My CSS skills are not the greatest and I stumbled upon a snippet of code that is puzzling to me.
.grid-product__title.grid-product__title--body:hover {
text-decoration: underline;
}
I checked MDN and it usually defines a reusable property, like a variable, right?
But what does it mean when it is in the selector? Could it be a parent selector of
.grid-product__title.grid-product__title
that underlines it when the parent body is selected or something like that? I am quite confused
Thank you very much :)