Are the following ways to was of styling with css mean the same thing. For the first one, is it target someclassA and someclassB if they are both on the same element? And the second one, target elements with someclassA or someclassB? How do they differ from .someclassA, .someclassB?
.someclassA.someclassB {
}
.someclassA .someclassB {
}
.someclassA, .someclassB {
}