Convert table base design to table less design in best way
- by Brij
What is the best optimized way to convert following in table less design? the layout should be cross browser compatible and SEO Friendly.
<table cellpadding="0" cellspacing="0">
<tr>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td>
<td>Row 1 Column 3</td>
</tr>
<tr>
<td colspan="3" align="center">Row 2</td>
</tr>
<tr>
<td>Row 3</td>
<td align="right" colspan="2"><img src="test.jpg" alt="test" /></td>
</tr>
</table>