Is it possible for the last < td > in a < tr > to act like a completely new row without relying on jQuery or JavaScript?
<table>
<tr>
<td>normal td</td>
<td>normal td</td>
<td>normal td</td>
<td class="i-want-to-be-a-row">row content</td>
</tr>
In this scenario, I want the "i-want-to-be-a-row" td to function as a new row.
I attempted something like this:
.i-want-to-be-a-row {
display:block;
}
However, I believe this is not the correct approach ;)