Skip to content

Instantly share code, notes, and snippets.

@Mouad-BGD
Created June 10, 2012 00:08
Show Gist options
  • Select an option

  • Save Mouad-BGD/2903175 to your computer and use it in GitHub Desktop.

Select an option

Save Mouad-BGD/2903175 to your computer and use it in GitHub Desktop.
CSS
<ul>
<li>Line 1</li>
<li class="disabled">Line 2</li>
</ul>
CSS
---
ul li:hover{
color:red;
}
.disabled{
color:grey;
}
the problem is that hover is applied for disabled too
fix:
---
ul li.disabled, ul li.disabled:hover{
color:grey;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment