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

              
                <h1>List of Products</h1>
<section>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article>
    <header>Something</header>
    <p>
      Lorem ipsum howdy you doodle goodle gobbligook you this is fantastic and amazing. However, it won't be justified until confirmed innocent and elegant in the end. God bless this work. Amen.
    </p>
  </article>
  <article class="filler">
  </article>
  <article class="filler">
  </article>
  <article class="filler">
  </article>
  <article class="filler">
  </article>
  <article class="filler">
  </article>
  <article class="filler">
  </article>
  <article class="filler">
  </article>
</section>
              
            
!

CSS

              
                h1 
  margin 10px 20px 0
  border-bottom 2px solid black

section
  margin 10px 20px 0
  display flex
  flex-flow row wrap
  justify-content space-between
  align-content flex-start
  min-width 0
  width auto
  
  article
    order 999999
    min-width 150px
    max-width 19vw
    min-height 200px
    flex 1 1 23vw
    border 1px solid black
    padding 20px 2vw
    margin 0 0 20px 0

    &.filler
      order 9999999
      border-color transparent
      min-height 0
      height 0
      padding-top 0
      padding-bottom 0      
      margin-bottom 0
    
    header
      font-size 2em
      font-weight bold
    
    
  
  

              
            
!

JS

              
                
              
            
!
999px

Console