我想要渐变文本。这个地方说:
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
我不想将背景部分显示给不支持*-background-clip: text
也不支持的浏览器color: transparent;
。
有没有办法做到这一点,没有PHP?