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

              
                <a href="#skip-to-heading">Skip to heading</a></br>
<a href="#skip-to-heading-tabindex">Skip to heading with tabindex="-1"</a></br>
<a href="#skip-to-span">Skip to span</a></br>
<a href="#skip-to-div">Skip to div</a></br>
<a href="#skip-to-div-tabindex">Skip to div with tabindex="-1"</a></br>
<a href="#skip-to-p">Skip to paragraph</a></br>
<a href="#skip-to-p-tabindex">Skip to paragraph with tabindex="-1"</a></br>
<a href="#skip-to-main">Skip to main</a></br>
<a href="#skip-to-main-tabindex">Skip to main with tabindex="-1"</a></br>
<a href="#skip-to-main-tabindex-heading">Skip to main with a heading inside</a></br>
<a href="#skip-to-link">Skip to link</a></br>
<a href="#skip-to-button">Skip to button</a></br>
<a href="#skip-to-aside">Skip to aside</a></br>
<a href="#skip-to-aside-tabindex">Skip to aside with tabindex="-1"</a></br>
<a href="#skip-to-footer">Skip to footer</a></br>
<a href="#skip-to-footer-tabindex">Skip to footer with tabindex="-1"</a></br>

<p>Annoying links I want to skip past:</p>
<ul>
  <li><a href="">Link 1</a></li>
  <li><a href="">Link 2</a></li>
  <li><a href="">Link 3</a></li>
  <li><a href="">Link 4</a></li>
</ul>

<p>Things I want to skip to:</p>
<h1 id="skip-to-heading">This is a heading ✘</h1>
<h1 id="skip-to-heading-tabindex" tabindex="-1">This is a heading with tabindex="-1"</h1>
<span id="skip-to-span">This is a span</span>
<div id="skip-to-div">This is a div</div>
<div id="skip-to-div-tabindex" tabindex="-1">This is a div with tabindex="-1"</div>
<p id="skip-to-p">This is a paragraph</p> 
<p id="skip-to-p-tabindex" tabindex="-1">This is a paragraph with tabindex="-1"</p> 
<a href="" id="skip-to-link">This is a link</a></br>
<button id="skip-to-button">This is a button</button>
<main id="skip-to-main">This is main</main>
<main id="skip-to-main-tabindex" tabindex="-1">This is main with tabindex="-1"</main>
<main id="skip-to-main-tabindex-heading" tabindex="-1">This is main with tabindex="-1"<h1>A heading inside main</h1></main>
<nav id="skip-to-nav">This is nav</nav>
<nav id="skip-to-nav-tabindex" tabindex="-1">This is nav with tabindex="-1"</nav>
<aside id="skip-to-aside">This is aside</aside>
<aside id="skip-to-aside-tabindex" tabindex="-1">This is aside with tabindex="-1"</aside>
<footer id="skip-to-footer">This is a footer</footer>
<footer id="skip-to-footer-tabindex" tabindex="-1">This is a footer with tabindex="-1"</footer>
    
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console