background-clip: text 在IOS中出现多余的边框

283 阅读1分钟

image.png

场景:

.highlighted {
    color: transparent;
    background: linear-gradient(90deg, #FF008B, #FF006B);
    background-clip: text;
    -webkit-background-clip: text;
}

解决方案

  clip-path: inset(1px);

或者

  padding: 1px;

From: stackoverflow.com/questions/7…