Picking up from another thread, it would be interesting if someone could render the following using CSS only:
HTML Code:
<table>
<tr>
<td>Left Column</td>
<td>Center Column</td>
<td>Right Column</td>
</tr>
</table>
All columns must have the same height and different colors. The columns cannot be fixed height and must use only CSS. The closest I have ever seen is something like this:
HTML Code:
<div id="left_column">Left Column
<div id="center_column">Center Column
<div id="right_column">Right Column</div>
</div>
</div>
That particular layout will make the columns the same height as the right column unless one of the other columns is larger in content. In that case the right column will be too short.
__________________
Jeremy Miller
Please login or register to view this content. Registration is FREE
|