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? :)
+5
A:
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)
Infinity
2010-02-17 17:42:59
Good to know. Thx for the quick answer!
American Yak
2010-02-17 17:57:22
A:
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;
}
American Yak
2010-03-26 21:12:55
-1 Seems to me that Infinity deserves the checkmark for answering your question.
kingjeffrey
2010-07-19 23:09:50