I have a question about this selectors in CSS.
What's the difference between :
.dropdown:hover .dropbtn {background-color: #3e8e41;}
AND
.dropdown:hover, .dropbtn {background-color: #3e8e41;}
I don't understand why in the first example we don't use a comma. What is the difference between using a comma or not