July 22, 2024

/ ~

Reset default element styles

HTML elements like button come with default style. You can use the CSS below to clean them up.

Terminal window
button {
all: unset;
outline: revert;
}