gpt4 book ai didi

css - 是否可以在 block 元素的边距中注入(inject)背景属性?

转载 作者:太空宇宙 更新时间:2023-11-03 20:04:33 25 4
gpt4 key购买 nike

演示:https://codepen.io/joondoe/pen/BaBJjqe

我已经看到 css 盒模型包括边距作为盒模型的最外层组件。我想知道是否可以在框元素的边距中添加背景颜色。

div{
display:flex;
text-align:center;
justify-content:center;
align-items:center;

background:orange;
height: 30px;
border: 15px solid green;

margin:50px;

/* to illustrate what I would accomplish */
margin-background:pink;
}
<div> I am a div </div>

最佳答案

我猜你只是在寻找 box-shadow:

div{
display:flex;
text-align:center;
justify-content:center;
align-items:center;

background:orange;
height: 30px;
border: 15px solid green;

margin:50px;

box-shadow:0 0 0 50px pink;
}
<div> I am a div </div>

关于css - 是否可以在 block 元素的边距中注入(inject)背景属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57808299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com