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

              
                <header>Resize your window to see how it works</header>
<p class="title">This paragraph is #1. Biggest font-size of this document. I'd like to set this paragraph like a title. It looks like an important paragraph, isn't it?</p>

<p class="main-text">Font-size of the main text is smaller than the first paragraph. It needs to be long, so I'll Lorem ipsum here. &ldquo;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent magna neque, accumsan vitae dignissim ac, eleifend feugiat lectus. In facilisis sapien libero, sed laoreet nisl ornare et. Morbi a massa eget tortor ultricies varius. Donec egestas diam lorem, non aliquam risus tincidunt eu. Sed vitae fringilla nulla. Integer ante leo, mollis at faucibus imperdiet, scelerisque eget purus. Mauris ultricies sodales libero. Etiam lacus tellus, rhoncus et nisl blandit, fringilla eleifend tellus. Aliquam libero justo, eleifend vel tincidunt blandit, pulvinar vel nulla.&rdquo;</p>

<p class="note">Lastly, we need tiny font-sized text here for notes. No need to be long.</p>
              
            
!

CSS

              
                // MIXIN FOR RESPONSIBLE TYPOGRAPHY MEDIA QUERY 
@mixin responsive-type($screen-size, $font-size-percent, $operator: 'min-width', $query: 'screen') {
  @media #{$query} and (#{$operator}: #{$screen-size}) {
    font-size: $font-size-percent;
  }
}

// MIXIN FOR GENERATING PX TO REM
@mixin font-size($sizeValue) {
  //  FALLBACK FOR OLD BROWSER
  font-size: $sizeValue + px; 
  // GENERATE REM FROM PX
  font-size: (0.125 / 2 * $sizeValue) + rem;
}

// DEMO
html {
  @include responsive-type(0, 100%);
  @include responsive-type(768px, 120%);
  @include responsive-type(1024px, 150%);
}

body {
  font-family: Neuton, "adobe garamond pro", georgia, serif;
  line-height: 1.5rem;
}
header {
 padding: 16px;
 background: red;
 color: white;
}
p {
  padding: 16px;
}
.title {
  @include font-size(36);
  font-weight: bold;
  line-height: 2.2rem;
}
.main-text {
  @include font-size(16);
}
.note {
  @include font-size(12);
}
              
            
!

JS

              
                
              
            
!
999px

Console