css global styles

Solutions on MaxInterview for css global styles by the best coders in the world

showing results for - "css global styles"
Brayden
16 Jun 2016
1html {
2    font-size: 100%;
3    box-sizing: border-box;
4}
5
6body {
7    margin: 0px;
8    padding: 0px;
9    min-height: 100vh;
10}
11
12*, *::before, *::after {
13    box-sizing: inherit;
14}