我想将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; }
答案 0 :(得分: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; }
直播example
要删除第一个标记中的下划线包含text-decoration: none;
如果仍然无效,请尝试在每个
之后使用!important