6 lines
105 B
CSS
6 lines
105 B
CSS
/* Kevin Powell's root recommendation for '*'' */
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|