在网页设计中,为了让页面更美观,我们会设置文字下划线的颜色,下面我们一起来学习如何设置CSS下划线的颜色。 要设置下划线的颜色,我们需要使用到CSS的textunderlinecolor属性。该属性可...
在网页设计中,为了让页面更美观,我们会设置文字下划线的颜色,下面我们一起来学习如何设置CSS下划线的颜色。
要设置下划线的颜色,我们需要使用到CSS的text-underline-color属性。该属性可以设置下划线的颜色,其语法如下:
text-underline-color: [color] ; p {
text-decoration: underline;
text-underline-color: red;
} .highlight {
text-decoration: underline;
text-underline-color: blue;
}