Last active
August 29, 2015 14:13
-
-
Save andyvanee/3b799ddd9bc17c2332b9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* id styling has widespread effects */ | |
#site a { padding-left: 10px; } | |
/* does nothing */ | |
li a { padding-left: 10px; } | |
/* also does nothing */ | |
.sidebar li:first a { padding-left: 10px; } | |
/* Another overly specific selector */ | |
#footer a { color: red; } | |
.mybutton { color: white; background-color: blue; } | |
/* crap, now I have to add my-button to the footer. */ | |
#footer a.mybutton { color: white; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment