imperial
06-05-2006, 01:31 AM
Hi,
Spoonfeed me please, you see my site uses a lot of tables(they say its bad use instead the div thing) and so it gives me the crap for their are tons of them on every pages, its quite a basic problem(I'm actually in a hurry so I let you guys do the hardship :( ) .
I got this code:
<table>
<tr>
<td>hello </td>
<td>hello </td>
<td>hello </td>
</tr>
<tr>
<td colspan="3">hello </td>
</tr>
</table>
but this is not the equivalent :)
<div>
<ul>
<li>hello </li>
<li>hello </li>
<li>hello </li>
</ul>
<ul>
<li colspan="3">hello </li>
</ul>
</div>
hope you could help, thanks!
Spoonfeed me please, you see my site uses a lot of tables(they say its bad use instead the div thing) and so it gives me the crap for their are tons of them on every pages, its quite a basic problem(I'm actually in a hurry so I let you guys do the hardship :( ) .
I got this code:
<table>
<tr>
<td>hello </td>
<td>hello </td>
<td>hello </td>
</tr>
<tr>
<td colspan="3">hello </td>
</tr>
</table>
but this is not the equivalent :)
<div>
<ul>
<li>hello </li>
<li>hello </li>
<li>hello </li>
</ul>
<ul>
<li colspan="3">hello </li>
</ul>
</div>
hope you could help, thanks!