I\'m trying to have a H1 header and regular text on the same line, with a line under it, like so:
I came up with a simple solution. My requirements are slightly different in that I want my status right aligned.
Title Status
.my-header h2 { display: inline; } .my-header span { float: right; }
Check out this plunk.