can anyone advise how do i convert the below html table into div? I tried to do some googling but not able to find a specific examples on this. Would appreciate if anyone can provide me with some sample codes or point me to the right direction.
Thanks
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td colspan="3">
List of news
</td>
</tr>
<tr>
<td width="20%">
Title
</td>
<td width="5%">
:
</td>
<td width="75%">
Name of title
</td>
</tr>
<tr>
<td valign="top">
Description
</td>
<td valign="top">
:
</td>
<td valign="top">
Content of description
</td>
</tr>
</tbody>
</table>
Live demo : http://jsfiddle.net/satinder_singh1/TdAWY/
demo with content
http://jsfiddle.net/satinder_singh1/TdAWY/1/