Align H1 Header and Normal Text in Same Line

前端 未结 6 2084
灰色年华
灰色年华 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:43

    I think you should write like this :-

    HTML

    Header

    Regular Text Goes Here

    CSS

    h1 {
    float:left;
      margin:0px;
      padding:0;
    }
    .right {
    float:right;
      margin:0px;
      padding:0px;
    }
    

    DEMO

    EVEN YOU CAN USE THIS METHOD ALSO WITH MINIMIZED MARKUP :- DEMO

提交回复
热议问题