Monday, March 25, 2024

css reset stylesheet

good way to override default browser styles at the head of a sheet before starting a project.

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

No comments:

Post a Comment