Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <main>
  <h1>Inspecting Cascade & Inheritance</h1>
  
  <section id="declared" class="demo-section">
    <h2 style="color: rebeccapurple">
      Declared Rules 
      <em>by cascade priority</em>
    </h2>
    <ul>
      <li>
        At the top of the rule panel,
        we can see directly targeted selector-blocks
        sorted by their relative weight:
        a combination of specificity and source-order.
      </li>
      <li>
        Generally rules higher up in the panel
        will overrive rules lower down.
      </li>
    </ul>
  </section>

  <section id="inherited" class="demo-section inherited">
    <h2>
      Inherited Rules
      <em>by source proximity</em>
    </h2>
    <p>
      Below the targeted rules
      we can see inherited properties from ancestor selectors:
      from the closest parent
      all the way back to the document root.
      The closest ancestor will always win.
    </p>
  </section>
</main>

              
            
!

CSS

              
                @property --gap {
  syntax: '<length>';
  inherits: true;
  initial-value: 14px;
}

main {
  border: medium solid;
  padding: 1em;
}

#declared {
  outline-style: dashed;
}

.inherited {
  outline-style: solid;
  outline-offset: 6px !important;
  font-style: italic;
}

.demo-section {
  outline: 0.125em dotted;
  outline-offset: 0.25em;
}




@layer setup {
  * { box-sizing: border-box; }
  html { block-size: 100%; }
  
  body {
    --text-small: clamp(0.938rem, 0.824rem + 0.568cqi, 1.25rem);
    --text-normal: clamp(1.25rem, 1.023rem + 1.136cqi, 1.875rem);
    --text-large: clamp(1.35rem, 0.818rem + 2.659cqi, 2.813rem);
    --text-xlarge: clamp(1.7rem, 0.784rem + 4.58cqi, 4.219rem);
    --gap: clamp(12px, 0rem + 3.75cqi, 24px);
    font-size: var(--text-normal);
    margin: var(--gap);
    min-block-size: 100%;
  }  
  
  img,
  svg {
    display: block;
    max-inline-size: 100%;
  }
  
  picture { display: contents; }
  
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}


              
            
!

JS

              
                
              
            
!
999px

Console