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

              
                <ul>
  <li>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Beatae delectus vero doloremque, ipsam impedit provident nihil? Asperiores officiis velit numquam, quisquam ut culpa labore, repellat quia veniam, dolorem molestias nostrum.</li>
  <li>Nihil mollitia, dolores rem dolorem aut iste recusandae accusantium quam veritatis, architecto eaque animi earum odit ullam? Possimus, vel eius quasi officia, consequatur vero architecto, impedit eveniet repellat incidunt praesentium!</li>
  <li>Explicabo, ad modi. Iusto molestias sint quasi minus, cum rem quas voluptates at quidem, nobis quisquam. Inventore fuga sit molestiae architecto dolore placeat dicta, laboriosam odit quasi quod similique adipisci!</li>
  <li>Cum alias commodi sequi deserunt voluptates fugit consectetur molestias ipsam soluta rem ea, pariatur delectus eveniet earum porro minus. Porro quasi temporibus adipisci maiores unde dicta aperiam minima aliquam repellendus.</li>
</ul>
              
            
!

CSS

              
                *,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  font-size: 150%;
}

.site-container {
  padding: 2em;
}

li {
  list-style: disc;
  transition: list-style 2s ease-in-out;
  transition-behavior: allow-discrete;
}
li:hover {
  list-style: square;
}

              
            
!

JS

              
                // const btn = document.querySelector("#animate");
// const card = document.querySelector(".card");

// btn.addEventListener("click", (e) => {
//   if (card.classList.contains("card--hide")) {
//     card.classList.remove("card--hide");
//     card.classList.add("card--show");
//   } else {
//     card.classList.remove("card--show");
//     card.classList.add("card--hide");
//   }
// });

              
            
!
999px

Console