andriajah Thu Jun 2023 11 months ago

How to make text align top in table HTML

I want to align the text in a <td> to the top. I have the following code

<table style="height: 275px; width: 188px">
    <tr>
        <td style="width: 259px;">
            main page
        </td>
    </tr>
</table>

The main page appears in the center of the cell I want it to appear at the top.

 

Answer:

Add a vertical-align property to the TD, like this:

<td style="width: 259px; vertical-align: top;">
main page
</td>
tr td position top text-align table css html