我正在使用jQuery Owl Carousel我创建了一个图像滑块,我想在其中在滑块图像上添加背景颜色。
2019 年的注意事项:http : //owlgraphic.com现在重定向到恶意站点。
这是标记:
<!-- HEADER-02 CONTENT -->
<div class="header-02-sub">
<!-- SLIDER STARTS HERE -->
<div id="owl-slider" class="owl-carousel owl-theme">
<div class="item">
<img src="http://placehold.it/1600x700" alt="The Last of us">
<div class="caption">
<h1>SOME TITLE HERE</h1>
</div>
</div>
<div class="item">
<img src="http://placehold.it/1600x700" alt="The Last of us">
<div class="caption">
<h1>SOME TITLE HERE</h1>
</div>
</div>
<div class="item">
<img src="http://placehold.it/1600x700" alt="The Last of us">
<div class="caption">
<h1>SOME TITLE HERE</h1>
</div>
</div>
</div>
<!-- SLIDER ENDS HERE -->
</div>
<!-- END HEADER-02 CONTENT -->
我已经添加了这个 CSS :
.header-02-sub {
background-color:red;
z-index:9999999;
witdth:100%;
height:100%;
}
我也尝试过将此代码添加到#owl-slider
父级,或者.item
这些都不起作用。
这是一个jsbin
关于如何在幻灯片图像上添加背景颜色的任何建议?