如何使用属性选择器:not

时间:2017-08-09 23:08:01

标签: css syntax

我想选择不是//div[@class="col-md-12"]//input 的所有元素,但显然这不起作用:

input[type="text"]

但这样做:

:not(input[type="text"]) { ... }

如何将:not(input) { ... } 选择器包含在[]

1 个答案:

答案 0 :(得分:0)

:not([type='text']) {    
    /* other codes */
}

我希望这会有所帮助。