gardevoir
Version:
The Modern CSS Reset 🚀
34 lines (27 loc) • 377 B
CSS
*,
*::before,
*::after {
box-sizing: inherit;
padding: 0;
margin: 0;
}
:where(html) {
box-sizing: border-box;
}
:where(h1, h2, h3, h4, h5, h6) {
font-weight: normal;
}
:where(ul) {
list-style: none;
}
:where(img, video) {
height: auto;
max-width: 100%;
}
:where(iframe) {
border: 0;
}
:where(table) {
border-collapse: collapse;
border-spacing: 0;
}