无法在Safari 11:https://codepen.io/Jintos/pen/crlxk上实现以下背景文本:剪辑效果。
/* Clip text element */
.clip-text {
font-size: 6em;
font-weight: bold;
line-height: 1;
position: relative;
display: inline-block;
margin: .25em;
padding: .5em .75em;
text-align: center;
/* Color fallback */
color: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.clip-text:before,
.clip-text:after {
position: absolute;
content: '';
}
/* Background */
.clip-text:before {
z-index: -2;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: inherit;
}
/* Text Background (black zone) */
.clip-text:after {
position: absolute;
z-index: -1;
top: .125em;
right: .125em;
bottom: .125em;
left: .125em;
background-color: #000;
}
它看起来像这样:https://prnt.sc/oba4gy,在chrome和firefox上看起来很棒:https://prnt.sc/oba69h。我进行了一些调查,似乎问题在于Safari并未将background属性设置为:after元素。有什么解决方法吗?