could i still do only a little tables... or absolute no tables at all?
Printable View
could i still do only a little tables... or absolute no tables at all?
if you want to use columns and rows, use the css float property.
tables are outdated and many of their atributes are IE specific.
for example...
<table>
<tr><td>cell one</td><td>cell two</td></tr>
<tr><td>cell one B</td><td>cell two B</td></tr>
</table>
displays the same as:
<div><div>
<div style="float:left;width:50%;">cell one</div>
<div style="float:right;width:50%;">cell two</div>
</div>
<div>
<div style="float:left;width:50%;">cell one B</div>
<div style="float:right;width:50%;">cell two B</div>
</div></div>
but the div table is more compatible with browsers.
thanx yea i was having problem with puting the colums and rows