It should be very simple but I can't figure it out.
I have a table like this :
<table class="category_table">
<tr><td> blabla 1</td><td> blabla 2 </td></tr>
<tr><td> blabla 3 </td><td> blabla 4 </td></tr>
</table>
I want to make td
tags of first tr
row have vertical-align
. But not the second row.
.category_table td{
vertical-align:top;
}