Ignore parent padding

后端 未结 12 870
梦如初夏
梦如初夏 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:54

    For image purpose you can do something like this

    img {
        width: calc(100% + 20px); // twice the value of the parent's padding
        margin-left: -10px; // -1 * parent's padding
    }
    

提交回复
热议问题