gpt4 book ai didi

html - 带有文本背景剪辑的 CSS 背景渐变在 Internet Explorer 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 09:01:05 27 4
gpt4 key购买 nike

h1 {
font-family: "Comic Sans MS", "Comic Sans", cursive;
text-align: center;
letter-spacing: 0.5px;
font-size: 2.4rem;
background-image: -webkit-linear-gradient(left, rgb(140, 198, 63), rgb(0, 185, 245));
background-image: -moz-linear-gradient(left, rgb(140, 198, 63), rgb(0, 185, 245));
background-image: -ms-linear-gradient(left, rgb(140, 198, 63), rgb(0, 185, 245));
background-image: -o-linear-gradient(left, rgb(140, 198, 63), rgb(0, 185, 245));
background-image: linear-gradient(to right, rgb(140, 198, 63), rgb(0, 185, 245));
background-clip: content-box;
-webkit-background-clip: text;

color: transparent;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: white;
-moz-text-stroke-width: 2px;
-moz-text-stroke-color: white;
-ms-text-stroke-width: 2px;
-ms-text-stroke-color: white;
-o-text-stroke-width: 2px;
-o-text-stroke-color: white;
text-stroke-width: 2px;
text-stroke-color: white;
}
<h1>Heading.. Appears good in Chrome but not in IE :( </h1>

以上是 HTML 和 CSS 代码。该代码在谷歌浏览器中运行良好。但相同的代码在 Internet Explorer - 10,11,Edge 中不起作用。我怀疑错误出在背景剪辑中。请帮忙。

最佳答案

这里的问题是-webkit-text-stroke-width: 2px;只在Edge中支持。

IE11及以下不支持text-stroketext-fill

要进一步阅读,请查看此 aricle .

关于html - 带有文本背景剪辑的 CSS 背景渐变在 Internet Explorer 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42760603/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com