Answers for "css reference attribute"

CSS
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 atrubute selector

css attribute selector
Posted by: Guest on November-16-2020

Browse Popular Code Answers by Language