+ 2
What are you calling 'type selector'? @@
If you are meaning of this kind of css rule selector:
input[type='text'] {
/* some properties/values */
}
... the 'type' is right called 'pseudo selector' and can only be applied on input elements which have a 'type' attribute allowed, and this will target only <input> of specified type ^^



