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

              
                h2 Media Query Test
p.explain The two boxes below are sized via media query. The top one uses ems, and the bottom uses pixels. With a 16px base font size, both should be identical in width. Likewise for browser zooming. But when the base font size changes, most browsers will show them with different widths. (Change your browser's font size and drag the window width to see it in action.)

h3.em Em-based media query
p.em

h3.px Pixel-based media query
p.px

h4.how-to How to change base font size
ul
  li
    a(href="https://support.google.com/chrome/answer/95416?hl=en") Chrome
  li
    a(href="https://support.mozilla.org/en-US/questions/944922") Firefox
              
            
!

CSS

              
                @import compass

= break($em)
  $px: #{($em * 16)}px
  $ems: #{$em}em
  @media (min-width: $ems)
    p.em
      width: $ems
      &:before
        content: "#{$ems} (16px * #{$em} = #{$px})"
  @media (min-width: $px)
    p.px
      width: $px
      &:before
        content: "#{$px}"



p.explain
  margin-bottom: 3em
p.px, p.em
  border: 1px solid #ddd
  padding: 1em 0
p.px
  background-color: lightblue
p.em
  background-color: lightgreen

.how-to
  margin-top: 4em
  padding-top: 1.5em
  border-top: 1px solid #ddd
    
+break(6)
+break(12)
+break(18)
+break(24)
+break(30)
+break(36)
+break(42)
+break(48)
+break(54)
+break(60)
+break(66)
+break(72)
+break(78)
+break(84)
+break(90)
+break(96)
+break(102)

              
            
!

JS

              
                
              
            
!
999px

Console