Created
December 25, 2012 09:36
-
-
Save solodxg/4372453 to your computer and use it in GitHub Desktop.
css:reset-min
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
/* === reset === */ | |
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, form, blockquote { | |
margin: 0; | |
} | |
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { | |
display: block; | |
} | |
ol, ul { | |
padding: 0; | |
list-style: none outside none; | |
} | |
table { | |
border-spacing: 0; | |
border-collapse: collapse; | |
} | |
img { | |
border: 0; | |
vertical-align:middle; | |
-ms-interpolation-mode: bicubic; | |
} | |
a { | |
text-decoration: none; | |
} | |
a:focus { | |
outline: thin dotted; | |
} | |
html, body { | |
height: 100%; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; | |
-webkit-font-smoothing:antialiased; | |
} | |
body { | |
font: normal 14px/1.5 "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei",sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment