HTML CSS examples for CSS Form:Form
fit 15 fields into a 400px by 510px form
<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>