This is a question that has been asked many times but my question is different, so please do not mark it as duplicate.
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
I understand what is happening in line 1. But I dont understand what is line 2. In line 2, "before" and "after" are pseudo elements. They need a "content" property. But I see all this missing here and it seems like these pseudo elements are being used for a different purpose.
Can someone please explain line 2.