Curiosity question, can't find any answer on the net.
I use a lot of :before and :after in my CSS so I declared this at the beginning of my style sheet :
:before, :after {
content: "";
}
This way, I don't have to declare content each time I need a pseudo-class.
But when I did that, my elements displayed with display: flex are exposed differently.
Example: they are centered whereas I declared justify-content: space-between
So I was wondering: do flexboxes generate their own pseudo-classes with content: "something"?