Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道它在 FireFox 中已被弃用,它的替代品是 currentColor。我的印象是它用于 SVG 相关的东西。但它到底是什么?:)
它并不是真正与 SVG 相关的东西。
它与 currentColor 的作用相同,例如:
a { color:purple; outline-color:-moz-use-text-color; }
在标准化 (CSS3) 之前,它是特定于 Mozilla 的 CSS 东西
只是对此的跟进,它已被弃用,正确的用法将更像是:
.style { outline-color:currentColor; }