Skip to content

Instantly share code, notes, and snippets.

@FrankFang
Last active October 19, 2023 06:21
Show Gist options
  • Save FrankFang/df5e57a0799823ed89a960a642b3a1e2 to your computer and use it in GitHub Desktop.
Save FrankFang/df5e57a0799823ed89a960a642b3a1e2 to your computer and use it in GitHub Desktop.
css reset
* {
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