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><a href="#about-me">More info about me!</a></h1>

<div class="lightbox" id="about-me">
  <a href="#" class="close-me"></a>
  <h2>Af tumblr schlitz</h2>
  <p>iPhone next level vinyl artisan readymade butcher before they sold out biodiesel ennui church-key cornhole. Mlkshk crucifix chambray retro master cleanse blue bottle. Enamel pin locavore hell of semiotics, lyft leggings sriracha heirloom thundercats poke activated charcoal truffaut tattooed YOLO kitsch. Meditation biodiesel blog, williamsburg umami craft beer ethical coloring book waistcoat cliche keffiyeh messenger bag photo booth authentic cronut.</p>
  </figure>
</div>
              
            
!

CSS

              
                @import url(https://fonts.googleapis.com/css?family=Roboto:400,700);

body {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: gold;
  font-family: 'Roboto', sans-serif;
}

a,
a:hover,
a:focus {
  color: #333;
  text-decoration: none;
}

.lightbox {
  background: white;
  padding: 1.5rem;
  border: 4px solid black;
  box-shadow: 4px 4px 0 black;
  width: 350px;
  
  position: fixed;
  transform: scale(0);
  transition: transform .3s ease-in;
}

.lightbox:target {
  transform: scale(1);
}

.close-me::after {
  content: "\00D7";
  display: inline-block;
  position: absolute;
  right: -1rem;
  top: -1rem;
  z-index: 3;
  color: #ffffff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
  background-color: black;
  font-weight: bold;
  cursor: pointer;
}
              
            
!

JS

              
                
              
            
!
999px

Console