CSS Reset Generator
Pick a CSS reset style — minimal modern, Eric Meyer, Normalize, or Tailwind Preflight — and copy the code.
*, *::before, *::after {
box-sizing: border-box;
}
* {
margin: 0;
}
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}CSS resets explained
CSS resets normalise inconsistent browser defaults so your styles start from a predictable baseline. The Minimal modern reset(by Josh Comeau) is the right choice for new projects — it's small, targets modern pain-points like font inheritance and image layout, and leaves sensible defaults in place. Eric Meyer's Reset zeros everything for maximum control but requires you to redeclare all styling. Normalize opts to preserve useful defaults and fix bugs rather than remove defaults. Tailwind Preflight is bundled automatically when using Tailwind CSS.
After applying a reset, use the CSS Minifier to compress it for production.
Private & free — this tool runs entirely in your browser.