-2

我想将 CSS 样式应用于出现在我网页的列标题中的链接。我在我的 CSS 中添加了以下内容:

thead tr td a { color: White; }

但是,我的链接仍然是标准的蓝色(跟随时为紫色)。

列标题中的链接是嵌入在嵌入td标签中的tr标签中的锚标签thead,对吗?

为什么我的 CSS 没有产生预期的结果?

更新:
有趣的是,这也不起作用:页面上的所有链接仍然是蓝色和紫色。

a { color: white; }
a:hover { color: white; }
a:visited { color: white; }
a:active { color: white; } 
4

1 回答 1

2

采用

thead tr td a { color: white; }
thead tr td a:hover { color: white; }
thead tr td a:visited { color: white; }
thead tr td a:active { color: white; }

看这个活生生的例子

text-decoration: none;删除第一个标签中的下划线

如果这仍然不起作用,请尝试!important在每个之后使用

于 2012-04-10T21:21:07.177 回答