Question:There are various types of input fields in a HTML page. Choose the appropriate CSS3 code which will have an effect on all inputs, except checkbox and radio.
A form input:not([type="radio"], [type="checkbox"]) { }
B input:not([type="radio"]):not([type="checkbox"]) { }
C input:not([type="radio & checkbox"]) { }
D input:!([type="radio"]) , input:!([type="checkbox"]) { }
+ AnswerB
+ Report