Skip to content

Instantly share code, notes, and snippets.

View matovius's full-sized avatar

Martin Matovu matovius

View GitHub Profile
@matovius
matovius / reset.css
Created December 30, 2023 13:16
A CSS Reset copied directly from Josh Comeau
/*
Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
box-sizing: border-box;
}
* {
margin: 0;
}