putting a inset box shadow on an image or image within a div

后端 未结 5 1782
醉梦人生
醉梦人生 2020-12-16 02:26

I have an image on my page which i want to put an inset box shadow on. I have tried doing this with the image both in, and out, of a div. Can anyone help me to get an inset

5条回答
  •  轮回少年
    2020-12-16 03:02

    .backing {
        position:relative;
        z-index:-10;
        float:left;
        margin-left:12%;
        box-shadow: inset 0 0 50px 50px  #FFF;
        -moz-box-shadow: inset 0 0 50px 50px  #FFF;
        -webkit-box-shadow: inset 0 0 50px 50px  #FFF;
    
    }
    
    .next {
        position:relative;  
        margin-left:8%;
        z-index:200;
    }
    
    .back {
        position:relative;
        margin-left:2%;
        z-index:220;
    
    }
    
    
    
    Back
    
    

提交回复
热议问题