微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用CSS 3选择第一个表中的第一个td

比如我说:
<div id="container">
    <table>
        <tr>
            <td></td>
            <td></td>
        </tr>

        <tr>
            <td></td>
            <td></td>
        </tr>
    </table>

    <table>
        <tr>
            <td></td>
            <td></td>
        </tr>

        <tr>
            <td></td>
            <td></td>
        </tr>
    </table>
</div>

td { width:10px; height:10px; }

我想做的是将样式应用到第一个表的第一个td.

我本来会期待:

#container table:first-child td:first-child {
    background: red;
}

但是它不行吗?请指教!

解决方法

#container table:first-child tr:first-child td:first-child { background: red; }

似乎工作
请注意,在IE下,您将需要在您的HTML中有一个!DOCTYPE声明来获得:first-child的支持. http://www.w3schools.com/cssref/sel_firstchild.asp

原文地址:https://www.jb51.cc/css/216614.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。