CSS: background-color only inside the margin

后端 未结 4 1657
梦如初夏
梦如初夏 2020-12-25 09:53

I have searched for an answer but couldn\'t find it anywhere. My question is reasonably simple: I have a background color of my body, then a large margin, and now I want a d

4条回答
  •  失恋的感觉
    2020-12-25 10:25

    I needed something similar, and came up with using the :before (or :after) pseudoclasses:

    #mydiv {
       background-color: #fbb;
       margin-top: 100px;
       position: relative;
    }
    #mydiv:before {
       content: "";
       background-color: #bfb;
       top: -100px;
       height: 100px;
       width: 100%;
       position: absolute;
    }
    

    JSFiddle

提交回复
热议问题