成分:只是文本类型的输入标签。
问题:如何控制text-decoration: underline
输入标签样式的大小,颜色,位置?
我看到text-decoration-color
可用,但仅在moz
Web解释器中可用,我想要类似的跨浏览器。
[编辑]我接受JS,CSS,HTML无关紧要,但是没有任何解决方法:我的问题很具体,我想控制这个特定的属性。
最佳答案
您可以简单地使用CSS3 text-decoration-color property,它也可以与Chrome
一起使用。
演示:
a {
text-decoration: underline;
-webkit-text-decoration-color: green;
text-decoration-color: green;
}
<a href="#">This is just a link</a>
注意:
请注意,使用
-webkit-text-decoration-color
使其与Chrome
兼容。您可以检查
text-decoration-color
Cross browser cpompatibility以获得有关其浏览器支持的更多详细信息。