Good Day
i have this issue
<table border="1" width="100%">
<tr>
<td>a</td><td>a</td></tr>
<tr>
<td>a</td><td>a</td></tr>
<tr>
<td colspan="2">b</td>
</tr>
<tr><td class="test">c</td></tr>
</table>
You can see here http://jsfiddle.net/GfQyg/
What i want to do is :
use css in class "test" to add colspan to the last row so it fits the table
is it possible ?
i dont want to modify the html
i need only to modify the css
Thank you