The CSS selector input[type="text"]can be broken down into:
input; find all the elements that are elements input.[type="text"]; filter these elements by those that have an attribute type text.
Since the select box is an element <select>, not a <input type="select" />, you can simply use the selector selectas follows:
select {
}
source
share