选择没有特定子元素的元素

时间:2015-12-30 11:33:59

标签: html css css-selectors

我有这张桌子:

<table>
    <thead>
        <tr>
            <th>Example 1</th>
            <th>Example 2</th>
            <th>Example 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Example text 1</td>
            <td>Example text 2</td>
            <td><input type="text" /></td>
        </tr>
    </tbody>
</table>

我想仅将样式应用于不包含input标记的tds。

怎么做?

0 个答案:

没有答案