📜  css 如何从访问的网站中删除下划线 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:58.536000             🧑  作者: Mango

代码示例1
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}