选择没有id的元素

时间:2014-02-19 11:41:06

标签: css

<div id="example">
    <input id="one"> //type may be anything
    <input>
    <input id="two">
    <textarea></textarea>
</div>

现在我如何选择#example's所有没有id的元素?

1 个答案:

答案 0 :(得分:2)

为了select #example's all elements which has not id,您可以使用:not()伪类,如下所示:

#example :not([id]) {
    /* ... */
}

<强> Online Demo