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

              
                <main>
  <p>The <a target="_blank" href="https://www.w3.org/TR/css3-values/#vmax">vmax</a> unit is similar to the <a target="_blank" href="https://codepen.io/fmressel/pen/MBGdVW">vmin</a> unit. But <code>vmax</code> is relative to whichever viewport dimension is largest.</p>
  <p>1vmax is equal to 1/100th of the largest viewport dimension. If the viewport is 100px wide by 500px tall, then 1vmax will equal 5px.</p>

  <p>The div below has a width property set to 10vmax. Resize the page in the larger dimension to see its width change.</p>
  <section class="example">
    <div class="vmax-width"></div>
  </section>
 
  <p>You can use <code>vmax</code> to set an element's height as well. Sounds like a cool effect.</p>
  <section class="example">
    <div class="vmax-height"></div>
  </section>  
  
  <p>The <code>vmax</code> unit can be used on properties other than width and height. I feel like I've read this before.</p>
  <section class="example">
    <p class="vmax-text">This text has a font size of 1vmax.</p>
  </section>
 
  <p>I don't think you have. Just trust me.</p>
  <footer class="important">
    <a target="_blank" href="https://xotv.me/channels/22-important/vod_videos/824-important-slash-slash-dribbble-dot-com">!important</a>
  </footer>
</main>
              
            
!

CSS

              
                .vmax-width {
  width: 10vmax;
  height: 20px;
}

.vmax-text {
  font-size: 1vmax;
}

.vmax-height {
  width: 20px;
  height: 10vmax;
}

.vmax-width, .vmax-height {
  margin: 0 auto;
}

.example {
  margin: 0.5rem auto;
  padding: 0.5rem;
  border: 2px solid #ffe8ec;
  border-radius: 5px;
  text-align: center;
}

.example p {
  margin-top: 0;
  margin-bottom: 0;
}

code {
  padding: 0 5px 2px;
  background-color: #fca67d;
  border-radius: 2px;
  font-family: inherit;
}

div {
  background-color: #ffe8ec;
}

p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f7f7f7;
}

a {
  font-weight: 900;
  color: #ffe3b0;
  text-decoration-style: dashed;
}

a:hover {
  text-decoration-style: solid;
}

main {
  max-width: 27rem;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 5px;
  color: white;
  background-color: #ea8071;
}

body {
  padding: 0;
  margin: 0;
  background-color: #e7e7e7;
  font-family: Verdana, Geneva, sans-serif;
}

.important {
  display: block;
  margin-top: 1em;
  color: #ffc5bc;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.important:hover {
  animation-name: wiggle;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;  
  
  padding: 10px;
  box-shadow: 0 0 4px 1px #d05b4a;
  background-color: #ee897a;
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
}

@keyframes wiggle {
  0% {
    transform: rotate(0turn);
  }

  25% {
    transform: rotate(0.01turn);
  }

  50% {
    transform: rotate(-0.01turn);
  }

  100% {
    transform: rotate(0turn);
  }
}
              
            
!

JS

              
                
              
            
!
999px

Console