Home › Forums › CSS › linear gradient no longer working in safari 11 (high sierra) › Reply To: linear gradient no longer working in safari 11 (high sierra)
September 30, 2017 at 4:24 pm
#260764
Participant
Brilliant!
Thank you so much, it worked great!
I just added 80% at the end of the #fff to account for the color-stop and now it is exactly as it was before.
.block .block-content .the-excerpt::before {
content: “”;
position: absolute;
right:0;bottom:0;left:0;
width: 100%;
height: 35px;
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 80%);
}