Published
- 1 min read
border box css normalise
The solution for this is noted below
border box css normalise
Solution
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*,
*::before,
*::after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
Try other methods by searching on the site. That is if this doesn’t work