Align H1 Header and Normal Text in Same Line

前端 未结 6 2100
灰色年华
灰色年华 2021-02-06 23:33

I\'m trying to have a H1 header and regular text on the same line, with a line under it, like so:

\"enter

6条回答
  •  爱一瞬间的悲伤
    2021-02-06 23:52

    I came up with a simple solution. My requirements are slightly different in that I want my status right aligned.

    HTML

    Title

    Status

    CSS

    .my-header h2 { 
      display: inline;
    }
    .my-header span { 
      float: right;
    }
    

    Example

    Check out this plunk.

提交回复
热议问题