css图片遮罩层

1,348 阅读1分钟

html结构:

<div class="wrap"></div>

css样式:

<style>     
.wrap {       
    position: relative;       
    height88px;       
    width98px;       
    backgroundurl(./cover.png) no-repeat;       
    background-size100%;     
}     
.wrap:after {       
    content"售罄";       
    position:absolute;       
    top:0;       
    left:0;       
    height100%;       
    width100%;       
    background-color#b2b2b2;       
    opacity0.8;       
    display: flex;       
    justify-content: center;       
    align-items: center;       
    color#fff;     
 }   
</style>