Skip to content

Instantly share code, notes, and snippets.

@nmartin867
Created April 1, 2015 20:02
Show Gist options
  • Select an option

  • Save nmartin867/645a527ed664f3a6229b to your computer and use it in GitHub Desktop.

Select an option

Save nmartin867/645a527ed664f3a6229b to your computer and use it in GitHub Desktop.
qEwXqx
<html>
<body>
<div class="top-content">
<span class="content-text">I'm on top!</span>
</div>
<div class="bottom-content">
<span class="content-text">I'm on the bottom!</span>
</div>
</body>
</html>
/*
Make all spans with class "content-text" bold
*/
span.content-text{
font-weight:bold;
}
/*
Highlight span text that has class "content-text" AND is a child of div with class "top-content"
*/
div.top-content span.content-text{
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment