覆盖<a> in its nested element</a>的样式

时间:2013-04-14 15:52:55

标签: html css

我有这样的情况:

<a href="" class="header">
    <table class="myclass">
        <tbody>
            <tr>
                <td>Hmmm</td>
            </tr>
        </tbody>
    </table>
</a>

现在,问题是我只能用“myclass”风格进行操作。在仅操作“myclass”时,我可以更改“Hmmm”文本的颜色吗?

我尝试过以下但没有结果:

.myclass,
.myclass td,
.myclass tr,
.myclass a,
.myclass p {
text-decoration: none; /* Remove underline from header */
color: red;
}

2 个答案:

答案 0 :(得分:0)

<td>上课:

<td class="newStyle"></td>

.newStyle{
color: red;
}

答案 1 :(得分:0)

我认为你没有用myclass调用td。还要检查你是否正确包含了你的css文件。