Last active
January 27, 2016 12:22
-
-
Save internoma/19d3043df127856e5324 to your computer and use it in GitHub Desktop.
CSS Mini Reset
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 Mini Reset */ | |
html, body, div, form, fieldset, legend, label { margin: 0; padding: 0; } | |
table { border-collapse: collapse; border-spacing: 0; } | |
th, td { text-align: left; vertical-align: top; } | |
h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; } | |
img { border: 0; } | |
html, * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment