Position <ul> directly under a <input> - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL

Description

Position <ul> directly under a <input>

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
div {<!--  www.  j ava2s  . c om-->
   padding:11px;
   background:blue;
}

#studyTestContainer {
   background:red;
}
</style> 
 </head> 
 <body> 
  <div id="pgContent"> 
   <div id="studyOverlay"> 
    <div id="studyContainer"> 
     <div id="studyTest"> 
      <div id="studyTestContainer"> 
       <input class="dropInput"> 
       <ul class="inputDrop"> 
        <li>L</li> 
        <li>L</li> 
        <li>L</li> 
       </ul> 
      </div> 
     </div> 
    </div> 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials