要配合hover使用text-decoration,可以通过CSS来实现。例如,当鼠标悬停在一个链接上时,可以改变链接的文本装饰样式,比如改变颜色、下划线等。
以下是一个示例代码:
<!DOCTYPE html><html><head><style>a { text-decoration: none; color: blue; }a:hover { text-decoration: underline; color: red; }</style></head><body><a href="#">这是一个链接</a></body></html>在上面的代码中,当鼠标悬停在链接上时,链接的文本装饰样式会改变,包括添加下划线和改变颜色。通过使用:hover伪类,可以在鼠标悬停时应用新的样式。


