Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am using CSS box-shadow property which is working fine on google chrome and Firefox but unfortunately its not working on Safari browser (mobile and mac both) Safari version I am using is 14.

my CSS code :

    .testing-class{
   content: '';
    height: auto;
    position: absolute;
    z-index: 9;
    width: 100%;
    bottom: 0px;
    display: block;
    -webkit-appearance: none;
    -moz-box-shadow: 0px 7px 48px 74px #fff;
   -webkit-box-shadow: 0px 7px 48px 74px white;
    box-shadow: 0px 7px 48px 74px #fff;
     margin-top: 21px;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
642 views
Welcome To Ask or Share your Answers For Others

1 Answer

it's only working for display: block elements; try to add that to your css code


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...