01-07-2008, 03:22 AM
|
#3 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
As hostfreak says, use the float property. Here's a simple mock-up:
html4strict Code:
<html><head> <style type="text/css"> div.left { float: left; overflow: hidden; border: 1px solid red; width: 100px; height: 200px; } div.right { float: left; overflow: hidden; border: 1px solid blue; width: 100px; height: 200px; margin-left: 2px; } </style></head><body> <div class="left">Left Column </div> <div class="right">Right Column </div></body></html>
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|