Answers for "css global styles"

CSS
0

css global styles

html {
    font-size: 100%;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
}

*, *::before, *::after {
    box-sizing: inherit;
}
Posted by: Guest on September-21-2021

Code answers related to "css global styles"

Browse Popular Code Answers by Language