I'm trying to select only inputs whose class starts with "btn_" and also has type="button"
.
Example:
input[type="button"] **&&** [class^="btn_"]
Is it possible to do this?
I'm trying to select only inputs whose class starts with "btn_" and also has type="button"
.
Example:
input[type="button"] **&&** [class^="btn_"]
Is it possible to do this?
Yes it is possible, just put the two conditions together.
input[type="button"][class^="btn_"] {
height: 200px;
}
Example: link