Answers for "html disabled button css"

CSS
2

style disabled button

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

html button disabled

<button type="button" disabled>This button is disabled</button>
Posted by: Guest on February-21-2020

Browse Popular Code Answers by Language