What does this CSS statement do, and how does it work?
*,*:before,*:after{box-sizing:inherit}
Why is this whole statement not simply *{box-sizing:inherit}
?
What specifically is the purpose of *,*
when applied to before?
Why apply the same inherit condition before all elements and after all elements?
What is the purpose of applying {box-sizing:inherit}
before or after all selected elements?
Why apply it to all elements, and before all elements and after all elements? Why not just apply it to all elements?
What does it all amount to? What does it do?