Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

html css disabled button hover style

/* 
To change the style of a button with class or not that has been set has disabled
when hovering.
*/
button:hover:disabled,button:hover[disabled]{
  color: black;
}
.button_class:hover:disabled,.button_class:hover[disabled]{
  color: black;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #html #css #disabled #button #hover #style
ADD COMMENT
Topic
Name
4+2 =