用于下划线然后字体的不同颜色

时间:2016-12-01 14:14:04

标签: css text-decorations

有没有办法为文字下划线和文字本身制作不同的颜色?

大多数浏览器似乎text-decoration-colornot available。还有其他方式吗?

1 个答案:

答案 0 :(得分:0)

使用border-bottomtext-decoration: none。它似乎与带下划线的链接相同。

请看下面的代码段:

a {
  text-decoration: none;
  color: red;
  border-bottom: 1px solid blue;
}

a:hover {
  color: blue;
  border-color: red;
}
<a href="#">This is a underlined link</a>

希望这有帮助!