You can set the td
to display:block;
then they'll all be under eachother.
HTML
<table>
<tr>
<td>1</td>
<td>2</td>
</tr>
</table>
CSS
td{
display:block;
}
See here: http://jsfiddle.net/hDsts/
Other solution (when display: block;
not works) is to use inline-block
:
CSS
td {
display: inline-block;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With