CSS code snippet – How to select button by type ?
/* How to select an element by it type with CSS*/ a[target] { background-color: yellow; } /*example */ button[type="submit"] { background-color: yellow; }
/* How to select an element by it type with CSS*/ a[target] { background-color: yellow; } /*example */ button[type="submit"] { background-color: yellow; }