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

              
                <div class="content">
  <p>Base font size set at 100%, which usually means 16px.
  </p>
  
  <p>
  All text elements below are child elements in the .content div, which is set at 1.5rem, or 24px.
  </p>
  
  <p>Try commenting out the .content font-size in the CSS to see how it affects the em-sized fonts.
  </p>
  
  <h2 class="em">Headline set at 3em, resulting size 72px</h2>
  
  <h2 class="rem">Headline set at 3rem, resulting size 48px</h2>
  
  <p class="em">
    This paragraph is set at 1.5em, resulting font-size is 36px.
  </p>
  
  <p class="rem">
    This paragraph is set at 1.5rem, resulting font-size is 24px.
  </p>
  
</div>
              
            
!

CSS

              
                html {
  font-size: 100%;
}

.content {
  font-size: 1.5rem;
}

.em {
  border: 2px solid red;
}

.rem {
  border: 2px solid blue;
}

h2.em {
  font-size: 3em;
}
h2.rem {
  font-size: 3rem;
}

p.em {
  font-size: 1.5em;
}

p.rem {
  font-size: 1.5rem;
}
              
            
!

JS

              
                
              
            
!
999px

Console