The following styles all input tags, which means any 'type' of input tag gets styled.
input {
color:#050;
font: bold 84% 'trebuchet ms',helvetica,sans-serif;
background-color:#ffffff;
border:1px solid;
border-color: #696 #363 #363 #696;
}
how do I isolate it so all button input 'types' are styled differently than text input 'types' with out needing to add/use 'id','class' or 'name'.
This must be a cross-browser solution.