@@ -25,7 +25,7 @@ A good place to start learning about CSS is https://www.w3schools.com
To find out what CSS classes and elements to use as selectors, in other words, how to identify what to target to get the look you are going for, the Developer Tools are very useful.
This video goes through the basics of the Developer Tools, although it is not about Foundry/Sandbox specifically, it is the same basic principles that is used for Foundry/Sandbox.
[How to Use Chrome Developer Tools for CSS Changes](https://www.youtube.com/watch?v=l0sgiwJyEu4)
## A note about CSS Specificity
## A note about CSS Specificity{#specificity}
If you have a working rule set(the CSS attributes) that wont take effect on the selector you are using, that usually means that somewhere else a selector has a higher Specificity(basically the CSS order of hierarchy and more detailed selector you use, the higher Specificity) and will use that instead.
Sandbox default CSS sometimes uses a more specified selector and that means that the Sandbox CSS takes precedence over selectors without that.
So, this is not a bug as such, it is just the way CSS works.