This is what I use.
HTML Code:
<body>
<div id="first">
<div class="input">
<input type="text" value="Left 1">
</div>
<div class="output">
Right 1
</div>
<br style="clear:both;">
</div>
<div id="second">
<div class="input">
<input type="text" value="Left 2">
</div>
<div class="output">
Right 2
</div>
<br style="clear:both;">
</div>
</body>
CSS
Code:
body {
font-family:arial,helvetica,sans-serif;
font-size:12px;
}
.input { width:49%; float:left;
}
.output {
width:49%;
float:right;
border:1px solid;
}
Bookmarks