This is an example of my buttons:
<button id="question_1a" disabled">Next question</button>
I want to have styling for buttons as standard, then a different background-color
if they are disabled:
input[type=button][disabled]{
background-color:#CCC;
}
input[type=button]{
background-color: #6CB300;
color:#fff;
border:0;
font-size:1.5em;
padding:2% 3%;
}
This doesn't seem to be correct, how do I select disabled buttons and normal buttons?