Answers for "selector input type"

CSS
21

how to write css for input type text

/* For Example, If we want to change css of "text" type
from <input> we do this:*/

input[type=text] {
    /* Your Code Here */ 
}
Posted by: Guest on March-01-2020
4

target css by form name

tag[name="nameofthetag"] {
	//style your html tag
}

Example: 
<input type="submit" value="Go" name="goButton">
input[name="goButton"] {
  background: red;
}
Posted by: Guest on June-24-2020
0

css set styles for input text

input[type="text"] {  font-size: 0.9em;  padding-top: 0.35rem;}
Posted by: Guest on September-26-2020

Browse Popular Code Answers by Language