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

              
                <script>
  /*
    We can't trust that any JS files will
    be downloaded so better to handle
    adding JS class and inactive class inline
  */
  var html = document.querySelector("html");
  html.classList.add("js");
  setTimeout(function() {
    html.classList.add("wf-slow");
  }, 3000);
</script>

<h1>Fighting FOUT</h1>

<p>The Flash Of Unstyled Text when loading webfonts is frustrating.</p> 

<p>Here's a technique to combat it.</p>

<p>By <a href="http://etchapps.com/">Etch</a> <span class="heart">❤</span></p>
              
            
!

CSS

              
                body {
  font-family: 'Nunito', sans-serif;
  padding: 5%;
}

// Hide the text when we have JS
.js {
  h1,
  p {
    opacity: 0;
    transition: opacity .2s ease-in-out;
  }
}

// Show the text when the fonts have loaded or failed or too slow.
.wf-active,
.wf-inactive,
.wf-slow {
  h1,
  p {
    opacity: 1;
  }
}

.heart {
  color: #f66;
}
              
            
!

JS

              
                WebFontConfig = {
  google: {
    families: ['Nunito']
  }
};

// Async the webfont loader
(function(d) {
  var wf = d.createElement('script'), s = d.scripts[0];
  wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
  wf.async = true;
  s.parentNode.insertBefore(wf, s);
})(document);
              
            
!
999px

Console