Question:To apply style on every input element except text, which of the following selectors should be used?
A input:([!type='text']) B input:not([type="text"]) C input:not([type!="text"]) D input:([type!='text'])
+ AnswerB
+ Report