Skip to content

Instantly share code, notes, and snippets.

@kenmasters
Last active March 16, 2018 16:25
Show Gist options
  • Save kenmasters/91d39714357c85fe769427a13fbba754 to your computer and use it in GitHub Desktop.
Save kenmasters/91d39714357c85fe769427a13fbba754 to your computer and use it in GitHub Desktop.
Disabled Button html/css
# Style rule for disabling any button
# added class and attribute `disabled`
input[type="submit"].disabled,
input[type="submit"].disabled:hover {
background-color: #eaeaea;
cursor: no-drop;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment