fit 15 fields into a 400px by 510px form - HTML CSS CSS Form

HTML CSS examples for CSS Form:Form

Description

fit 15 fields into a 400px by 510px form

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">
#tidy {<!--from  w  w w  .ja  va2  s . co m-->
   height:301px;
   width:301px;
   overflow-y:scroll;
}

#someforms {
   height:1001px;
   background-color:Chartreuse;
}
</style> 
 </head> 
 <body> 
  <div id="tidy"> 
   <div id="someforms"></div> 
  </div>  
 </body>
</html>

Related Tutorials