What does the css selector * + * actually mean? You can see it it in google chrome's console when you do an inspect element. According to me it seems like applying a style to "Every second child" , but still want to be sure. Can anyone help me out?
Example:
*+* {
margin-top:1em;
}