所以我有一個透明的圖像,我想放在圖像的頂部創建一個「淡出」效果。我也有一個背景圖片。所以這裏有三個圖像。絕對定位與三個圖像
這是我的代碼
<div class="jumbotron">
div class="hero-dashboard">
<img class="center-block" src="../../img/hero-dashboard.png">
<div class="fade-bottom">
</div>
</div>
CSS
.jumbotron{
background-image: url('../img/hero-bg.jpg');
background-repeat: no-repeat;
background-size: cover;
.hero-dashboard img {
position: absolute;
z-index: 500;
height: 30px;
width: 500px;
.fade-bottom{
background-image: url('../img/hero-footer-fade.png');
position: absolute;
z-index:10;
bottom: 70%;
top: 10%;
right: 50%;
width: 100%;
}
}
}
他們都必須是 「超大屏幕」 DIV中。 它在頁面上,但它似乎並沒有聽取定位。誰能幫忙?
你在使用sass嗎? – abidkhanweb