How to make
full width?

后端 未结 5 1565
走了就别回头了
走了就别回头了 2021-02-19 08:03

http://jsfiddle.net/bh2f6/1/

I want to make this


so it will stretch the full width, right to the edges of its parent container. I have tried add
5条回答
  •  梦谈多话
    2021-02-19 08:59

    HR Secret things, you must know.

    When your horizontal rule (hr) leaves 15px from left and right, probably when you use with bootstrap.


    .my-hr-line { position: relative; left: -15px; width: calc(100% + 30px); height: 2px; border: 2px solid blue; }

    Hope it will help many one.

提交回复
热议问题