标签: html css
The exact thing i want to remove
我想删除悬停的链接上的蓝色默认浏览器效果,就像使用引导程序一样。我尝试使用CSS规则删除它,但是没有用
<a href="#">Home</a> a:hover { background: transparent; }
答案 0 :(得分:1)
这将解决您的问题。它继承了父级的颜色。
a { color: inherit; }
<a href="#">asa</a>