1/* For Example, If we want to change css of "text" type
2from <input> we do this:*/
3
4input[type=text] {
5 /* Your Code Here */
6}
1tag[name="nameofthetag"] {
2 //style your html tag
3}
4
5Example:
6<input type="submit" value="Go" name="goButton">
7input[name="goButton"] {
8 background: red;
9}