CSS - The first line of code in CSS

less than 1 minute read

The following should be the first line of code to reset box sizing.

1
2
3
4
5
*,
*::before,
*::after {
  box-sizing: border-box;
}

Categories:

Updated: