如何删除锚点(链接)的下划线?
无论如何(在CSS中)避免在页面中引入文本和链接的下划线..?
使用CSS。 这消除了a
和u
元素的下划线:
a, u {
text-decoration: none;
}
有时您需要重写其他元素样式,在这种情况下,您可以在规则中使用!important
修饰符:
a {
text-decoration: none !important;
}
CSS是
text-decoration: none;
和
text-decoration: underline;
这将删除您的颜色以及锚标记存在的下划线
a {
text-decoration: none ;
}
a:hover
{
color:white;
text-decoration:none;
cursor:pointer;
}
链接地址: http://www.djcxy.com/p/74607.html
上一篇: How to remove the underline for anchors(links)?
下一篇: Android Conversion to Dalvik format failed with error 1