Reset default HTML element styles
Jul 7, 2024/
#css
/-1 minHTML elements like
button
come with default style. You can use the CSS below to clean them up.
1button {
2 all: unset;
3 outline: revert;
4}
HTML elements like
button
come with default style. You can use the CSS below to clean them up.
1button {
2 all: unset;
3 outline: revert;
4}