Want to vertically align TD elements of a table

Just like adding a tag

Here’s some approaches I tried that don’t work

html.Td(children=, valign=‘Top’)
html.Td(children=, style={‘valign’: ‘Top’}

<app.py>
html.Table(children=, className=‘typography’)

<assets\typography.css>
.typography td {
valign: top
}

what would work? Thanks