将鼠标悬停在各个链接上时如何设置“下划线”

时间:2020-05-17 09:35:49

标签: html css frontend css-animations mousehover

1 个答案:

答案 0 :(得分:0)

<style>
a{
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
</style>