Answers for "how to do a css reset for website"

CSS
1

simple css reset

* {
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-family: inherit;
}

html {
  font-size: 62.5%;
}
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language