如何將p標記放在首位?z-index> css background-img>絕對img> p標記
這裏是我的代碼
HTML
<section class="key-fundamentals">
<div class="container">
<img class="img-man-cbox img-responsive" src="images/img-man-cbox.png">
<p>Our key fundamentals</p>
</div>
</section>
CSS
.key-fundamentals {
z-index: -999;
height: 535px;
background-image: url('../images/bg-fundamentals.png');
background-position: center;
background-repeat: no-repeat;
}
.key-fundamentals .img-man-cbox {
z-index: 1;
position: absolute;
top: 782px;
left: 80px;
}
.key-fundamentals p{
z-index: 2;
color: red;
}
h1標籤低於IMG2圖像絕對
當我把Z-索引-1 IMG2圖像將消失。
請幫忙..謝謝!
在此先感謝...
以外的位置,你可以張貼一些實際的代碼,而不是那個奇怪的僞代碼? – Turnip
更新你的問題到一個適當的,你會得到一個正確的答案 – LGSon
我只是更新我的代碼..請檢查謝謝 – FReyes