Answers for "html button attribute disabled"

CSS
10

html button disabled

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

disabled button by attr

/* Selects any disabled <input> */
input:disabled {
  background: #ccc;
}
Posted by: Guest on November-12-2021

Code answers related to "html button attribute disabled"

Browse Popular Code Answers by Language