I think you have a slight misunderstanding of what the first means.
.element .symbol {}
Indicates that these CSS settings apply to any HTML element with the .symbol class that is inside the element with the .element class.
<div class="element"> <div class="symbol" /> </div>
In this example, your first CSS entry will affect the <div> in the middle.
The second example means that the first class requires two classes. In addition, it is equal to the first.
<div class="element large"> <div class="symbol" /> </div>
So, if the HTML looks like this, the CSS values ββwill be applied to the internal <div> .
If you want to set CSS tags that apply to several classes separately, you need to separate them with a comma. So it looks like this:
.element, .symbol {}
Edit: upon request, a link to the documentation for CSS selectors.
Nitram Apr 05 2018-12-21T00: 00Z
source share