Skip to content

Instantly share code, notes, and snippets.

@niccolomineo
Created November 14, 2023 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niccolomineo/5a1e7d06cff5ec0f949d6c837b5e80ce to your computer and use it in GitHub Desktop.
Save niccolomineo/5a1e7d06cff5ec0f949d6c837b5e80ce to your computer and use it in GitHub Desktop.
CSS Reset
*, *::before, *::after {
box-sizing: border-box;
}
* {
margin: 0;
}
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment