0
我試圖在css中創建一個像下面的圖像的東西,但之前沒有使用有用的結果。在html和css中垂直不透明圖層的圖像
我的CSS代碼:
.geo-login-left{
background-color: #7199bd;
background-image: url(../img/home-bg.png);
background-repeat: no-repeat;
background-size: cover;
display: block;
background-position: center;
text-align: center;
}
.geo-login-left:before{
background-image: url(../images/logo-white.jpg);
margin-top: 5px;
content : "";
opacity: 0.3;
}
.geo-login-left:after{
background-image: url(../images/logo-white.jpg);
content : "";
}
可以請你分享搗鼓這個 – sameer
這裏是類似的解決方案是起訴http://stackoverflow.com/questions/41048201/3-image-layout-center-image-larger-and-higher-z-index/41048391#41048391。你可以重新排列圖像,並用z-indices指向 – Banzay
https://jsfiddle.net/95h82gha/ – Banzay