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

              
                <div class="FlexContainer">
  <div class="FlexItem">
    <p>When content is sparse,<br>
      I should be centered.</p>
  </div>
</div>

<div class="FlexContainer">
  <div class="FlexItem">
    <p>When there's lots of content&mdash;more content than can fit inside the flex container&mdash;the container should expand vertically to accomodate.</p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer non pulvinar mi, quis aliquam ligula. Aenean cursus sapien augue, vel porta arcu aliquet ut. Cras eu massa eu libero porttitor commodo. Morbi non ante luctus, finibus felis sit amet, dignissim augue. Sed consectetur iaculis nisi sed vestibulum. Integer accumsan auctor justo sed eleifend. Suspendisse id diam lectus. Nullam et volutpat dui. Pellentesque a mauris ac ante viverra elementum. Curabitur tincidunt ac ex ut lobortis. In eget ligula ut sapien convallis feugiat. Duis vehicula eget elit at consectetur. Aliquam pharetra maximus consequat. Fusce mattis vel velit non cursus. Integer sed metus libero. Fusce leo est, suscipit id velit eu, egestas viverra nibh. Duis sed orci augue. Vivamus varius consectetur gravida. Sed id faucibus felis. Morbi a diam nisi. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
  </div>
</div>
              
            
!

CSS

              
                /**
 * Flexbug demo 3.2.a (bug)
 *
 * 1. Flexbug #2 workaround.
 */

.FlexContainer {
  align-items: center;
  background: hsla(0,0%,0%,.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1em;
  padding: 2em;
  min-height: 250px;
  width: 400px;
}

.FlexItem {
  background: hsla(0,0%,0%,.1);
  box-sizing: border-box; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0 1em;
}

              
            
!

JS

              
                
              
            
!
999px

Console