Table Header Alignment #1360
-
I have a table element and the headers in it are mostly fine, but I have one header that requires a sub-heading (image below) Notice that the headers don't quite align (sub-heading is throwing things off a touch). How can I go about aligning all the headers and still keep that sub-heading text? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If we don't already, we might need to expose I think that should do what you're after? Can you inspect with web tools, manually apply |
Beta Was this translation helpful? Give feedback.
If we don't already, we might need to expose
vAlign
on theTh
so you can set vertical align top.I think that should do what you're after?
Can you inspect with web tools, manually apply
vertical-align: top
to the<th />
and we if it gives you the desired effect?