9
I am trying to select only inputs whose class starts with "btn_" and which also have type="button"
.
Example:
input[type="button"] **&&** [class^="btn_"]
It is possible to do this?
9
I am trying to select only inputs whose class starts with "btn_" and which also have type="button"
.
Example:
input[type="button"] **&&** [class^="btn_"]
It is possible to do this?
11
Yes it is possible, just join the two conditions.
input[type="button"][class^="btn_"] {
height: 200px;
}
Example: http://jsfiddle.net/cj9jqofw/
Browser other questions tagged css css3
You are not signed in. Login or sign up in order to post.
Thank you for the reply. It worked perfectly.
– Thiago Hencke