How to style in HR on left and right hand side of div?

后端 未结 2 1908
伪装坚强ぢ
伪装坚强ぢ 2020-12-12 05:40

How can I style in an HR to the left and to the right of my text within an existing div?

Something like this:

--- Header Stuff ------------------------------

相关标签:
2条回答
  • 2020-12-12 06:05

    Something like this:

    // Html
    <h2>Header Stuff</h2>
    <hr/>
    
    // Css
    h2
    {
      background-color: #FFFFFF;
      display: inline-block;
      margin: 0 0 0 50px;
      padding: 0 10px;
    }
    
    hr
    {
      margin-top: -13px;
    }
    
    0 讨论(0)
  • 2020-12-12 06:29

    If you want to use an HR-tag, you could use negative margins on a div to position it on-top of the hr, to accomplish what you have described.

    // HTML
    <hr />
    <div class="headline">A headline text</div>
    
    // CSS
    .headline {
        background-color: #fff;
        position: relative;
        margin: -20px 0 0 20px;
        float: left; 
    }
    

    Put together in a fiddle: http://jsfiddle.net/WmbsG/

    0 讨论(0)
提交回复
热议问题