Skip to content

Instantly share code, notes, and snippets.

@almeidarenato
Last active March 30, 2020 02:11
Show Gist options
  • Save almeidarenato/2e661832715dabd265e4875334edc1ef to your computer and use it in GitHub Desktop.
Save almeidarenato/2e661832715dabd265e4875334edc1ef to your computer and use it in GitHub Desktop.
Simple Reset CSS
/*
* CSS Reset
*/
* {
margin:0;
border: 0;
padding:0;
box-sizing: border-box
}
/*
* Removes outline from links and buttons
*/
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
/*
* Remove List Styles
*/
ul,ol,li {
list-style: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment