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

后端 未结 2 1915
伪装坚强ぢ
伪装坚强ぢ 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: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
    
    A headline text
    // CSS .headline { background-color: #fff; position: relative; margin: -20px 0 0 20px; float: left; }

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

提交回复
热议问题