.box1{
? ? width: 200px;
? ? height: 200px;
? ? background-color: #0bcd96;
? ? position:relative;
? ? z-index:3;
}
.box2{
? ? width: 200px;
? ? height: 200px;
? ? background-color: #1e389a;
? ? position: absolute;
? ? left: 100px;
? ? top: 100px;
}
.box3{
? ? width: 200px;
? ? height: 200px;
? ? background-color: #6a1752;
? ? position: relative;
? ? z-index:2;
}
如果沒有開啟定位的元素或者是定位為默認值,會忽略z-index的聲明
父元素的層級再怎么高也不會蓋住子元素一疯,可以理解為(水漲船高)
opacity(透明)
.box1{
? ? ? width: 200px;
? ? ? height: 200px;
? ? ? background-color: #0bcd96;
? ? ? position:relative;
? ? ? opacity: 50%;
? ? ? filter: alpha(opacity=50);
? }
? .box2{
? ? ? width: 200px;
? ? ? height: 200px;
? ? ? background-color: #1e389a;
? ? ? position: absolute;
? ? ? left: 100px;
? ? ? top: 100px;
? ? ? opacity:0.5px苫纤;
? ? ? filter: alpha(opacity=50);
? }
? .box3{
? ? ? width: 200px;
? ? ? height: 200px;
? ? ? background-color: #6a1752;
? ? ? position: relative;
? ? ? opacity: 50%;
? ? ? filter: alpha(opacity=50);
? }
背景(background-image)
.box1{
? ? width: 500px;
? ? height: 500px;
? ? margin:0 auto;
? ? background-color: #0bcd96;
? ? background-image: url(../css/logo_new@2x.png);
? ? background-repeat:no-repeat;
}