css The text-decoration-color property is used to set the color of text decoration (underline, overline, and underline). Note that the text-decoration-color property only works if the visible text-decoration property is first set on the element.
How to use the css text-decoration-color property?
The text-decoration-color attribute specifies the color of text decoration (underline, overline, line-through).
Note: The text-decoration-color attribute only works on elements with a visible text-decoration attribute.
Syntax:
text-decoration-color: color|initial|inherit;
Attribute value:
● Color: Specifies the color of text modification.
● initial: Set this property to its default value.
● Inherit: Inherit this attribute from the parent element.
Note: Almost all mainstream browsers do not support the text-decoration-color attribute. Firefox supports an alternative property, the -moz-text-decoration-color property.
css text-decoration-color property example
<!DOCTYPE html> <html> <head> <style> p { text-decoration: underline; text-decoration-color: red; -moz-text-decoration-color: red; /* 针对 Firefox 的代码 */ } </style> </head> <body> <p> 线条的颜色现在应该是红色! </p> <p><b>注意:</b>几乎所有的主流浏览器都不支持 text-decoration-color 属性。</p> <p><b>注意:</b>Firefox 支持另一个可替代该属性的属性,即 -moz-text-decoration-color 属性。</p> </body>
Rendering:
The above is the detailed content of How to use css text-decoration-color property. For more information, please follow other related articles on the PHP Chinese website!