【发布时间】:2020-06-09 15:32:20
【问题描述】:
如何去除图片中的边框?向 .box-wrap 添加背景颜色和框阴影会导致 div 周围出现此边框。我希望颜色匹配。
<div id="box-shadow-wrapper" class="right-column" style="background-color: rgb(0, 84, 68);">
<div class="box-wrap">
</div>
</div>
.right-column {
float: left;
width: 600px;
height: 531px;
position: relative;
}
.box-wrap {
width: 390px;
height: 370px;
margin: 77px auto 0;
margin-top: 77px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
position: relative;
box-shadow: rgb(0, 84, 68) 0px 24px 13px 42px inset;
background-color: white;
}
【问题讨论】:
-
请澄清您的具体问题或添加其他详细信息以准确突出您的需要。正如目前所写的那样,很难准确地说出你在问什么。
-
我刚刚编辑了帖子,现在已经很清楚了。