I've been searching for this for a while, probably with the wring keywords, I couldn't find exactly what I was looking for.
How do you write this table in CSS:
CODE
<table border="1">
<tr>
<td>content1</td><td>content2</td>
</tr>
<tr>
<td>content3</td><td>content4</td>
</tr>
</table>
<tr>
<td>content1</td><td>content2</td>
</tr>
<tr>
<td>content3</td><td>content4</td>
</tr>
</table>
I mean putting 4 divs for each cell. and How to stick those divs together? Is it as easy as tables? Works in all browsers?
Hope it is not with a simple float
