Pro HTML5 and CSS3 Design Patterns

(avery) #1

CHAPTER 3 CSS SELECTORS AND INHERITANCE


Inheritance


HTML


<body>
<h1>Inheritance</h1>

<div>
<p>
<em>
<span>


  • This span inherits font from its ancestor, <body>.

  • It inherits line-height from its ancestor, <div>.

  • It inherits letter-spacing from its ancestor, <p>.

  • It inherits italics from its ancestor, <em>,
    but it is also directly assigned to font-style:normal , which
    overrides its inherited italics.






CSS


body { font-family:verdana,arial,sans-serif; font-size:18px; }
div { line-height:2em; }
p { letter-spacing:0.8px; }
em { font-style:italic; }
span { font-style:normal; }
Free download pdf