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

              
                <!-- Base (inherit styles from html) -->

%p ToToTo
%p liftoff

<!-- Kerning -->

%p.kerning ToToTo
%p.no-kerning ToToTo

<!-- Letterspacing -->

%p.ligatures.light liftoff
%p.no-ligatures.light liftoff

%p.ligatures.bold liftoff
%p.no-ligatures.bold liftoff
              
            
!

CSS

              
                @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700')

// 1. Using letterspacing, kerning, and ligatures simultaneously
//    is likely an edgcase, so the implementation gets weEirRd.

html
  font-family: 'Source Sans Pro', 'Open Sans', 'Helvetica Neue', 'Helvetica', sans-serif
  font-size: 45px
  font-weight: 300
  line-height: 1
  padding: 40px 40px 0

  // 1. Inherit kerning and ligatures throughout the document
  // 2. Safari doesn't support font-feature-settings properly,
  //    so we'll need to avoid inheriting it elsewhere.
  font-kerning: normal
  font-variant-ligatures: common-ligatures

p
  margin: 0 0 20px

// 1. A few browsers disable kerning and ligatures on
//    letterspaced type, hence all the hoops we have 
      to jump through to get them working.
.bold
  letter-spacing: -0.0125em
  font-weight: 700

.light
  letter-spacing: 0.375em
  font-weight: 300

.kerning
  // 1. IE will enable kerning only via font-feature-settings.
  font-feature-settings: 'kern'
  font-kerning: normal

.no-kerning
  font-kerning: none

.ligatures
  // 1. While these properties should be inherited from html,
  //    I'm declaring them here to make sure they get applied.
  font-kerning: normal
  font-variant-ligatures: common-ligatures

  // 1. Fix broken spacing in Safari
  // 2. Enable ligatures in IE
  // 3. We can use font-feature-settings here because
  //    it's not inherited by descendant elements.
  font-feature-settings: 'kern', 'liga'

.no-ligatures
  font-variant-ligatures: no-common-ligatures
              
            
!

JS

              
                
              
            
!
999px

Console