Skip to content

Instantly share code, notes, and snippets.

@ShivrajRath
Created July 26, 2019 15:52
Show Gist options
  • Save ShivrajRath/cea04ca0d19842f87268297195b9728e to your computer and use it in GitHub Desktop.
Save ShivrajRath/cea04ca0d19842f87268297195b9728e to your computer and use it in GitHub Desktop.
Minimal CSS Reset
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
margin: 0;
padding: 0;
}
ol, ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment