什么是-moz-use-text-color?

发布于 2024-08-21 21:45:31 字数 79 浏览 7 评论 0原文

据我所知,它在 FireFox 中已被弃用,其替代品是 currentColor。我的印象是它用于与 SVG 相关的东西。但这到底是什么? :)

I understand it's deprecated in FireFox, and its replacement is currentColor. My impression is that it's used for SVG-related stuff. But what the heck is it? :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时间海 2024-08-28 21:45:31

它并不是真正与 SVG 相关的东西。

它与 currentColor 的作用相同,例如:

a {
  color:purple;
  outline-color:-moz-use-text-color;
}

它是 mozilla 特定的 CSS 事物,直到它变得标准化(CSS3)

It's not really for SVG-related stuff.

It does the same as currentColor, e.g.:

a {
  color:purple;
  outline-color:-moz-use-text-color;
}

It was a mozilla specific CSS thing until it became standardized (CSS3)

半枫 2024-08-28 21:45:31

只是对此的后续,它已被弃用,正确的用法将是更多的内容:

.style {
    outline-color:currentColor;
}

Just a follow up on this, it is deprecated, and the correct usage would be something more along the lines of:

.style {
    outline-color:currentColor;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文