Chrome 不显示带有展开值的文本阴影
我有这个非常简单的 HTML 文档:
<html>
<head>
<title>test</title>
</head>
<body>
<div style="text-shadow: 0px 0px 5px black">
This should have a text shadow.
</div>
</body>
</html>
在 Chrome 12.0.742.0(最新的开发版本)中,文本阴影根本不显示 - 它看起来就像普通文本一样。如果删除第三个参数(spread),它将进行渲染,但是当您不想要 1 像素非模糊阴影时,这在大多数情况下是无用的。我怎样才能让它正确显示?我认为我的语法可能是错误的,但我不这么认为,因为 Chrome 中仅显示此页面上的一些阴影: http://www.w3.org/Style/Examples/007/text-shadow。
I have this extremely simple HTML document:
<html>
<head>
<title>test</title>
</head>
<body>
<div style="text-shadow: 0px 0px 5px black">
This should have a text shadow.
</div>
</body>
</html>
And in Chrome 12.0.742.0 (latest dev version) the text-shadow does not display at all - it looks just like normal text. If you remove the third parameter (spread) it will render, but this is useless most of the time when you don't want a 1-pixel non-blurred shadow. How do I get it to display properly? I thought my syntax might be wrong but I don't think so because only some of the shadows on this page are shown in Chrome: http://www.w3.org/Style/Examples/007/text-shadow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意到了 Chromium bug 跟踪器。我评论并链接回此处。这确实是一种回归。您的 CSS3 有效。
Taken note of on the Chromium bug tracker. I commented and linked back here. It is indeed a regression. Your CSS3 is valid.
是的,我刚刚更新到 12.0.742.0,发现阴影从我的网站上消失了。我不会担心它,除非它在未来的 Chrome 版本中消失。
Yea, I just updated to 12.0.742.0 and noticed the shadow disappeared from my website. I'm not going to worry about it unless it stays gone in future Chrome releases.