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

              
                <header>
  <h1>Fluid Header</h1>
</header>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus nisi voluptate delectus illo consequatur voluptas aut, enim nesciunt, veniam beatae voluptates sint id at corrupti magnam velit unde debitis minus!</p>
<p>Quae quia numquam dolore porro neque magnam saepe magni, aut, ut itaque explicabo facere exercitationem nam cumque voluptatibus molestias adipisci labore fugit maiores qui, similique dignissimos non, consectetur! Ullam, ratione.</p>
<p>Explicabo pariatur, provident doloribus minima ex ut, impedit accusantium maxime culpa sequi voluptate necessitatibus earum. Recusandae minima dicta, earum praesentium! Dolorum in enim, sunt ullam sed provident accusamus culpa numquam.</p>
<p>Est corporis non illum dolorum inventore dolores consectetur quod reiciendis asperiores similique quas excepturi vero vel accusantium delectus cupiditate veritatis dolorem voluptatem, veniam cumque laboriosam, nesciunt eum nisi consequuntur placeat.</p>
<p>Minus sapiente eos ad deleniti quia necessitatibus, itaque quibusdam, nisi explicabo soluta facere sed harum iste nihil vel asperiores dolor adipisci rerum ea nobis voluptatum cum illum velit doloremque reiciendis!</p>
              
            
!

CSS

              
                header {
  background: purple;
  color: white;
  padding: 10vmin 1rem;
  text-align: center;
  margin: 0 0 8vmin 0;
}
header h1 {
  margin: 0;
  font-size: 5rem;
  font-size: calc(24px + (48 - 24) * ((100vw - 300px) / (1600 - 300)));

}
p {
  max-width: 600px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  text-indent: 1rem;
}



body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}
h1 {
  font-family: 'Montserrat', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
              
            
!

JS

              
                
              
            
!
999px

Console