I have a HTML table. Each cell has content of different length.
For this reason, the content is not aligned on the top.
I would like the first lines be alig
use valign="top" on the td
<td valign="top">....</td>
setting the attribute on the tr should work for the entire row like wise for table
in css
td, th { vertical-align:top; }