HTML CSS examples for CSS Layout:Responsive Layout
make a responsive scroll box with seperate text fields
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #lefttext, #righttext {<!-- ww w . ja va2s . co m--> float:left; } </style> </head> <body> <div id="lefttext"> <input type="text"> </div> <div id="righttext"> <input type="text"> </div> <div style="float:none;"></div> </body> </html>