我在这里读了10个问题,但不能适用于我的情况。
我在这里创建了这个例子
我需要隐藏内容框顶部的阴影。 我不确定我是否做得对,或者我应该以其他方式定制图像。 我相信它可以通过比使用背景创建侧面阴影更聪明的方式来完成。 感谢。
满足规则:
HTML代码
<div class="container-wrapper">
blahblah header is here
</div>
<div class="container-wrapper breadcrumbz">
<div class="pusher"></div> <!-- only for experiment. i know about margins and paddings :) -->
<div class="content">
There should be no shadow on top of this block
</div>
</div>
CSS
body {
background: #4ca8cb;
}
.container-wrapper {
margin: 0 auto;
max-width: 500px;
padding:0 50px;
}
.breadcrumbz {
background: url('https://dl.dropboxusercontent.com/u/14562883/shadowline.png') no-repeat top center;
}
.pusher {
height: 14px;
}
.content {
box-shadow: 0px 0px 3px 1px #555;
background-color: #e7eaeb;
height: 200px;
}
更新
我已经解决了这个问题。 解决方案需要改进,但我得到了方法。
我可以使用
将底部块移到“下面”position:relative
和负余量
答案 0 :(得分:0)
您可以使用:before
pseudoelement
.content {
background-color: #e7eaeb;
height: 200px;
position: relative;
}
.content::before {
content: "";
position: absolute;
width: 100%;
height: 198px;
background-color: transparent;
z-index: -1;
box-shadow: 0px 0px 3px 1px black;
top: 2px;
}