My CSS Reset

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
}

input,
button,
textarea,
select {
  font: inherit;
}

This is the quick-and-dirty CSS reset I use to make my styles look more consistent across browsers. It serves as a nice starting point as I begin styling a new website.

Inspired by Josh Comeau’s CSS reset.

See the OG reset by Eric Meyer -> CSS Tools: Reset CSS.

That’s all folks.