Can someone explain what this code from Bootstrap is doing?
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
I understand the box-sizing part.
I think I understand *:after. However I am familiar with this usage:
*:after {
content: 'hello world'
}
In the case without a content property what is this doing? Is it saying "all elements inserted with :after should also have box-sizing 'border-box'" - or something else?