Answers for "css attributes"

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 properties

selector {property: value;}
Posted by: Guest on August-22-2021
0

css properties

property {
  property: value;
}
Posted by: Guest on September-16-2021

Browse Popular Code Answers by Language