CSS -Eingangswähler
input[type="text"] {
background-color: blue;
}
Insert_Name_Here
input[type="text"] {
background-color: blue;
}
/* For Example, If we want to change css of "text" type
from <input> we do this:*/
input[type=text] {
/* Your Code Here */
}
tag[name="nameofthetag"] {
//style your html tag
}
Example:
<input type="submit" value="Go" name="goButton">
input[name="goButton"] {
background: red;
}
input[type="text"] { font-size: 0.9em; padding-top: 0.35rem;}