Ignore parent padding

后端 未结 12 874
梦如初夏
梦如初夏 2021-01-30 19:23

I\'m trying to get my horizontal rule to ignore the parent padding.

Here\'s a simple example of what I have:

#par         


        
12条回答
  •  一整个雨季
    2021-01-30 19:43

    If your after a way for the hr to go straight from the left side of a screen to the right this is the code to use to ensure the view width isn't effected.

    hr {
    position: absolute;
    left: 0;
    right: 0;
    }
    

提交回复
热议问题