Created
September 17, 2012 22:24
-
-
Save moxley/3740160 to your computer and use it in GitHub Desktop.
CSS Critique
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
/* | |
* CSS Critique - How many issues can you find in this stylesheet? | |
*/ | |
.blue-black-select { | |
background-color: white; | |
} | |
#background { | |
width:100%; | |
height:100%; | |
left:0px; | |
} | |
#content { | |
margin-left:0px !important; | |
margin-top:25px !important; | |
} | |
#cb { | |
padding:10px 10px; | |
} | |
#drop_down_menu { | |
top:-25px; | |
left:-10px; | |
} | |
#event-bar{ | |
padding-top:4px; | |
padding-bottom:7px; | |
} |
Use of negative values (top:-25px;
) is suspect.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use of
!important
keyword. Almost never needed.