Convert table base design to table less design in best way
Posted
by Brij
on Stack Overflow
See other posts from Stack Overflow
or by Brij
Published on 2010-03-25T09:12:35Z
Indexed on
2010/03/29
6:23 UTC
Read the original article
Hit count: 473
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>
© Stack Overflow or respective owner