Skip to content

Instantly share code, notes, and snippets.

@heycn
Created October 20, 2023 06:53
Show Gist options
  • Select an option

  • Save heycn/6759766a197a589e14d9213afc3bc3cc to your computer and use it in GitHub Desktop.

Select an option

Save heycn/6759766a197a589e14d9213afc3bc3cc to your computer and use it in GitHub Desktop.
cssreset.css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
*::before,
*::after {
box-sizing: border-box;
}
a {
color: inherit;
text-decoration: none;
}
input,
button {
font-family: inherit;
}
ol,
ul {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment