📅  最后修改于: 2022-03-11 14:53:31.489000             🧑  作者: Mango
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}