When I inspect elements in the Chrome console, I notice styles applied to certain divs/buttons like this:
/* Sample Chrome browser styles */
.ItemClass1-0-3-171.ItemClass2-0-3-173: {
background-color: "red"
}
I'm wondering how I can define a new style in CSS without specifying those specific class numbers, as they may vary for other elements on the page.
/* CSS stylesheet */
.ItemClass1.ItemClass2 {
background-color: "blue"
}