z-index及透明度


z-index

图层~
z-index:默认是0,最高无线~999




    
    Title
    


  • 一起学习Java!
  • 时间:2099-01-01
  • 地点:月球一号基地

opacity: 0.5; /背景透明度/

#content{
    width: 380px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    font-size: 12px;
    line-height: 25px;
    border: 1px solid #000;
}
ul,li{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
/*父级元素相对定位*/
#content ul{
    position: relative;
}
.tipText, .tipBG{
    position: absolute;
    width: 380px;
    top: 216px;
}
.tipText{
    color: white;
    z-index:999;
}
.tipBG{
    /*背景透明度*/
    opacity: 0.5;
    background: #000;
    filter: Alpha(opacity=50);
}