CSS-Specifity and CSS Inheritance (concrete question)?
- by jens
Hello,
i would by thankful for an official link (and section) of the specification for CSS, that explains if:
.one two h1 {color:green;font-family:arial;} /*case 1 */
.one two h1 {color:blue;} /*case 2*/
will result in (when evaluated by the browser)
.one two h1 {color:blue;font-family:arial;} /*case 3*/
or will it be:
.one two h1…