Have an issue with box-shadow Inset bottom only

后端 未结 2 794
死守一世寂寞
死守一世寂寞 2021-01-30 08:16

I am using box-shadow to create an inner shadow...

box-shadow: inset 0 0 10px #000000;
-moz-box-shadow:    inset 0 0 10px #000000;
-webkit-box-shadow: inset 0 0          


        
2条回答
  •  清歌不尽
    2021-01-30 08:56

    JSnippet DEMO

    On top only:

    -moz-box-shadow:    inset  0  10px 10px -10px grey;
    -webkit-box-shadow: inset  0  10px 10px -10px grey;
     box-shadow:        inset  0  10px 10px -10px grey;
    

    On bottom only:

    -moz-box-shadow:    inset  0 -10px 10px -10px grey;
    -webkit-box-shadow: inset  0 -10px 10px -10px grey;
     box-shadow:        inset  0 -10px 10px -10px grey;
    

    On top and bottom only:

    -moz-box-shadow:    inset  0  10px 10px -10px grey, 
                        inset  0 -10px 10px -10px grey;
    -webkit-box-shadow: inset  0  10px 10px -10px grey, 
                        inset  0 -10px 10px -10px grey;
     box-shadow:        inset  0  10px 10px -10px grey, 
                        inset  0 -10px 10px -10px grey;
    

    Quick Example

    .shadow-top {
        -moz-box-shadow:    inset  0  10px 10px -10px grey;
        -webkit-box-shadow: inset  0  10px 10px -10px grey;
         box-shadow:        inset  0  10px 10px -10px grey;
    }
    .shadow-bottom {
        -moz-box-shadow:    inset  0 -10px 10px -10px grey;
        -webkit-box-shadow: inset  0 -10px 10px -10px grey;
         box-shadow:        inset  0 -10px 10px -10px grey;
    }
    .shadow-top-bottom {
        -moz-box-shadow:    inset  0  10px 10px -10px grey, 
                            inset  0 -10px 10px -10px grey;
        -webkit-box-shadow: inset  0  10px 10px -10px grey, 
                            inset  0 -10px 10px -10px grey;
         box-shadow:        inset  0  10px 10px -10px grey, 
                            inset  0 -10px 10px -10px grey;
    }
    
    div { display:inline-block; margin-right:15px; width:150px; height:100px; background:yellow; }

提交回复
热议问题