Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>Descendant Selector Example</title>
  </head>
  <body>
    
    <p>This example demonstrates the use of CSS <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Descendant_selectors">Descendant Selector</a>. Here we will target the paragraphs that are descendants of the element that has a class of "main".</p>
    
    <div class="main">
      
      <p>paragraph 1: lorem ipsum lorem ipsum</p>
      
      <div class="section">
        <p> paragraph 2: blah blah blah</p>
        
        <p> paragraph 3: yo yo ok ok </p> 
      </div>
    </div>
  </body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x