gpt4 book ai didi

html - 更改 href 颜色但不更改 tr

转载 作者:太空宇宙 更新时间:2023-11-04 00:28:02 26 4
gpt4 key购买 nike

我有一个表格,其中表格标题包含一个 href 以及每个 tr。我想改变 th ahref 的颜色而不影响 tr 中 ahref 的颜色。我该怎么做?

<table>
<tr>
<th>
<a href="/Index">Index</a>
</th>
</tr>
<tr>
<a href="/Index2">Index</a>
</tr>
</table>



table.Documents th
{
color: Black;
}

不工作

最佳答案

table th a {
color: black; //wont apply to td a
}

此外,您的 html 格式不正确。应该是:

<tr>
<td>
<a href="/Index2">Index</a>
</td>
</tr>

如果您想使用“文档”类:

<table class="Documents">

关于html - 更改 href 颜色但不更改 tr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5734523/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com