CSS内去除下划线是通过textdecoration属性来设置的。a { textdecoration: none; } 上面的代码表示将在a标签内去除下划线。如果只想去除链接的下划线,可以使用a:h...
CSS内去除下划线是通过text-decoration属性来设置的。
a {
text-decoration: none;
} 上面的代码表示将在a标签内去除下划线。
如果只想去除链接的下划线,可以使用a:hover选择器。
a:hover {
text-decoration: none;
} 上面的代码表示当鼠标悬停在链接上时,下划线将被隐藏。
需要注意的是,text-decoration有许多不同的值可供选择,如underline,overline,line-through等。因此,如果只想去除链接下划线,必须将text-decoration属性值设置为none。