This may be a basic html + css question but it’s being kinda thought for me to solve :S
You see, I need a ‘3 column’ layout. I want a central column (let’s say 10em width) and two more columns one at each side (let’s say 2em width each). I want the three in the middle of the screen…
How can I do it by declaring each of them separately? I mean, do something like this:
<div class="left"><!-- 2em width --></div>
<div class="central"><!-- 10em width --></div>
<div class="right"><!-- 2em width --></div>
Is there some way to do it without evolving them in another container?
Thx!
When I was looking for a similar solution, this helped me immensely: http://matthewjamestaylor.com/blog/perfect-3-column.htm