我在这里阅读了大约 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
和负边距