I’m trying to align just some text within a table header cell to the bottom of the cell, but I need the rest of the text to be centered. What’s the best way to do this?
Ex desired output:
Header 1 is Header 2 Header 3
on two lines
[-] [-] [-]
Current output:
Header 1 is Header 2 Header 3
on two lines
[-] [-]
[-]
Usually you would use
vertical-align: bottom;instead ofvertical-align: center;; however this will also bring theHeader ns to the bottom as well. There is no way around this, that I am aware of, other than to use two rows for your header. One withths and one withtds. Vertically align the second row withvertical-align: bottomand the first one withvertical-align: center;