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

              
                <nav>
  <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#how-it-works">How it works</a></li>
    <li><a href="#drawbacks">Drawbacks</a>
    <li><a href="#creator">Creator</a></li>
  </ul>
</nav>

<main>
  <div id="how-it-works" class="page">
    <h1>How it works</h1>
    <p>The :target selector matches the current URL hash. You're not technically navigating, but it gets you like 90% of the way there.</p>
  </div>
  
  <div id="creator" class="page">
    <h1>Created by...</h1>
    <p>Charles.</p>
  </div>
  
  <div id="drawbacks" class="page">
    <h1>Drawbacks</h1>
    <p>The main drawback here is that the 'default' page--that is, the page that shows when <em>no</em> hash exists in the URL--must come last in the markup.</p>
    <p>This is because the CSS that handles the fallback markup depends on the <code>:last-child</code> selector.</p>
  </div>
  
  
  <div id="#" class="page">
    <h1>The :target selector</h1>
    <p>Using the target selector, we can perform quasi-page navigation.</p>
  </div>
</main>
              
            
!

CSS

              
                main > .page:target ~ .page:last-child,
main > .page {
    display: none;
}

/* :last-child works, but .page:last-child will not */
main > :last-child,
main > .page:target {
    display: block;
}
              
            
!

JS

              
                
              
            
!
999px

Console