作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
默认链接颜色为蓝色。如何删除 html 超链接标签的默认链接颜色 <a>
?
最佳答案
a { color: inherit; }
... 将导致元素呈现其父元素的颜色(我认为您正在寻找的颜色)。
现场演示如下:
a {
color: inherit;
}
<p>The default color of the html element is black. The default colour of the body and of a paragraph is inherited. This
<a href="http://example.com">link</a> would normally take on the default link or visited color, but has been styled to inherit the color from the paragraph.</p>
关于html - 如何删除 html 超链接 'a' 标签的默认链接颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6722467/
我是一名优秀的程序员,十分优秀!