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="container">
  <h1>Display List Item</h1>
  <h2>Fake list con display: inline
    flow list-item</h2>
  <div class="wrapper wrapper-inline">
    Esto es una fake list hecha con display: inline flow list-item. Añadimos más texto para ver que se comporta exactamente como un inline.
  </div>
  <h2>Fake list con display: block
    flow list-item</h2>
  <div class="wrapper wrapper-block">
    Lista utilizando la combinación de valores block y list-item. Visualmente es exactamente igual que una lista.
  </div>
  <h2>Lista utilizando la etiqueta ul</h2>
  <ul class="wrapper list">
    <li> Soy una lista hecha con un ul y li.
       Lorem ipsum, dolor sit amet consectetur adipisicing elit. Tenetur molestiae, fugiat dolorum nulla harum nostrum consequuntur accusantium aliquid doloremque voluptates odit aliquam, maiores nesciunt doloribus mollitia optio aspernatur non? Dolorum.
    </li>
  </ul>
</div>


              
            
!

CSS

              
                .container {
  padding: 30px;
  max-width: 700px;
  border: 1px solid rgb(251, 205, 190);
  border-radius: 6px;
  margin: 30px auto;
}

.wrapper {
  background-color: rgb(251, 205, 190);
}

.wrapper-inline {
  display: inline flow list-item;
}

.wrapper-block {
  display: block flow list-item;
}

.list {
  padding: 0;
}
              
            
!

JS

              
                
              
            
!
999px

Console