當前位置:
首頁 >
a标签下划线
發布時間:2023/12/25
30
生活家
頁面中有一處box中的a標簽都被加上了下劃線,查找元素卻沒有找到css中的underline。
原因是 <a>標簽默認是有下劃線的,而一般看到的<a>標簽鏈接中的下劃線都被覆蓋掉了,所以誤以為<a>標簽的默認狀態是沒有下劃線的,出現下劃線是有css另外渲染的。
其實下劃線才是<a>標簽的默認狀態
在head中加上下面一段覆蓋掉<a>標簽的下劃線
<style type="text/css">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
轉載于:https://www.cnblogs.com/huim/p/9810399.html
總結
- 上一篇: sql格式化工具-SQL Pretty
- 下一篇: 安卓接口和type-c接口有什么区别