Table of Contents
|
All Slides
|
Link List
|
Examples
|
CSCI E-75
<< previous
|
next >>
Contextual Selectors
Example 10.7
Example 10.7 Source:
<div> <em>Emphasized text</em> outside of <strong>li</strong> appear "normal". <ul> <li><em>Emphasized text</em> within <strong>li</strong> have a different style.</li> </ul> </div>
In
style
element (
<style type="text/css">
) within
head
element:
li em { color: red; background-color: navy;}
Example 10.7 Rendered:
With Styles
Without Styles
Table of Contents
|
All Slides
|
Link List
|
Examples
|
CSCI E-75
<< previous
|
next >>