This is a perfect opportunity for you to set your audio players aside for a moment.
- Open your editor and write a simple page with a heading, content div, some p tags in the div
- Set up a style sheet and write some basic selectors
- Then set up several class selectors , even if just to change the font color.
- Then use those classes to set up some descendant combinators
- Then you can write some double classed chained selectors (no spaces between them in the css, space in the html)
.class1.class2 {
/* style here */
}
<div class="class1 class2">Double Class Target</div>
When you start writing some of your own test code the Lights Will Come On!