我目前正在尝试让我的侧边栏使用 3 种不同的背景。截屏
我试图用 3 个容器修复它,但我无法正确处理(顶部图像消失等)。任何关于如何做到这一点的最佳方法的建议都会很棒。
HTML
<div class="footer">
<div class="head">
<div class="block">
Test<br/>
Test<br/>
Test<br/>
Test<br/>
Test<br/>
Test<br/>
Test<br/>
Test<br/>
Test<br/>
</div>
</div>
</div>
CSS
.footer {
background: url(http: //i.imgur.com/NNtfaL6.png) bottom left no-repeat;
width: 190px;
margin-left: 20px;
}
.head {
background: url(http: //i.imgur.com/sOVew68.png) top left no-repeat;
width: 260px;
}
.block {
background: #1b1b1b;
color: #fff;
width: 175px;
margin-left: 80px;
}