Last active
August 29, 2015 14:16
-
-
Save fpigeonjr/253fc76086023ae26ca8 to your computer and use it in GitHub Desktop.
common resets
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
.cf { | |
zoom: 1; | |
&:after { | |
clear: both; | |
} | |
&:before, &:after { | |
content: ""; | |
display: table; | |
} | |
} | |
a, a:link, a:visited { | |
text-decoration: none; | |
} | |
img { | |
max-width: 100%; | |
height:auto; | |
} | |
* { | |
box-sizing: border-box; | |
} | |
.hidden { | |
display: none !important; | |
} | |
.wrap { | |
max-width: XXpx; | |
width: 100%; | |
margin: 0 auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment