7
我試圖將子陰影添加到子元素位於其中的父對象。我想要插入的陰影重疊圖像。將CSS插入框陰影添加到子圖像頂部的父元素
我的HTML代碼:
<section class="highlights">
<img src="images/hero.jpg" alt="" />
</section><!-- End section.highlights -->
和CSS:
.highlights {
height: 360px;
padding: 0;
position: relative;
overflow: hidden;
opacity: 0.9;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
z-index:1;
}
.highlights img {
height: auto;
width: 100%;
margin: 0 auto;
display: block;
position: relative;
}
.highlights {
-webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
陰影沒有出現我。我做錯了什麼?
僞類:只需要一個冒號 – silenzium
之前,這是CSS3。請閱讀https://developer.mozilla.org/en-US/docs/Web/CSS/::在 – andyb
wt之前..很高興知道,謝謝andyb! – silenzium