Answers for "background color disabled button"

CSS
1

button background color remove

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

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 "background color disabled button"

Browse Popular Code Answers by Language