Can CSS3 box-shadow:inset do only one or two sides? like border-top?

后端 未结 11 1759
时光说笑
时光说笑 2021-01-30 04:44

I\'m wondering about the support for side specific inner shadows in css3.

I know this works great on supported browsers.

div { box-shadow:inset 0px 1px 5         


        
11条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-30 05:31

    You can use a background gradient for a work around in most cases:

    SCSS(with compass) example:

    @include background(linear-gradient(top, #666 1%, #999 3%, #ffffd 6%, #f6f6f6 9%, #f6f6f6 92%, #ffffd 94%, #999 97%, #666 99%) );
    

提交回复
热议问题