Skip to content

Instantly share code, notes, and snippets.

@rabbitinblack
Created December 8, 2023 03:20
Show Gist options
  • Save rabbitinblack/35e26b6a5e8efcfd6a578e870b9c945d to your computer and use it in GitHub Desktop.
Save rabbitinblack/35e26b6a5e8efcfd6a578e870b9c945d to your computer and use it in GitHub Desktop.
Simply Reset CSS
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
font: inherit;
}
html {
color-scheme: dark light;
}
body {
min-height: 100vh;
}
img,
picture,
svg,
video {
display: block;
max-width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment