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

              
                <main class="container">
  <nav class="nav">
    <ul>
      <li>Home</li>
      <li>About</li>
      <li>Contact</li> 
    </ul>
  </nav>
  <div class="main-content">Main Content</div>
  <footer class="footer">Footer</footer>
</main>
              
            
!

CSS

              
                body
  color #fff
  font-family sans-serif
  font-size 20px

.container
  max-width 600px
  margin 0 auto
  border solid 1px #bbb
  padding 15px
  margin-top 40px
  background #eee
  
.main-content
  padding 10px
  background #bbb
  min-height 1000px
  margin-top 15px

.nav
  padding 5px 
  background #222
  position -webkit-sticky
  position sticky
  top 0
  
  ul
    display flex
    list-style none
    justify-content space-around  
    
.footer
  padding 5px 
  background #bbb
  margin-top 15px
              
            
!

JS

              
                
              
            
!
999px

Console