Answers for "how to select button by type css"

CSS
0

how to select button by type css

/* How to select an element by it type with CSS*/
a[target] {
  background-color: yellow;
}

/*example */

button[type="submit"] {
  background-color: yellow;
}
Posted by: Guest on September-02-2021

Code answers related to "how to select button by type css"

Browse Popular Code Answers by Language