Answers for "how to change disable button color in css"

CSS
0

button background color remove

.button {     
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;      
}
Posted by: Guest on December-26-2020
2

style disabled button

button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
Posted by: Guest on June-16-2020

Code answers related to "how to change disable button color in css"

Browse Popular Code Answers by Language