Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
As important as specificity may be to understanding how declarations are applied to a document, another key concept is inheritance. Inheritance is the mechanism by which styles are applied not only to a specified element, but also to its descendants. If a color is applied to an h1 element, for example, then that color is applied to all text in the h1, even the text enclosed within child elements of that h1:
h1 {color: gray;}
<h1>Meerkat <em>Central</em></h1>