The default input type is 'text'. I've always assumed then that css declarations targeting input[type='text'] would affect those inputs even if the type was not explicitly declared on the control. However, just noticed that my default-type text inputs don't get the styles. Why is this the case?
CSS:
input[type='text']
{
background:red;
}
HTML:
<input name='t1' type='text'/> /* Is Red */
<input name='t1'/> /* Is Not Red */