Is there a CSS style that can align the top of the tallest character with the border of its container? I'm not sure if this is easily possible.
HTML
<div><h1>The "T" of this h1 needs to touch the top border</h1></div>
CSS
div {
background: orange;
}
h1 {
vertical-align: top; //doesn't seem to work?
}
Currently, it looks like this
But it should look like this
Or like this (line-height = minimum
?)