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">
    <div class="image-container">
      <p>euismod leo. Donec suscipit, augue in consectetur tempor, nisl elit aliquam velit</p>
      <img src="https://picsum.photos/seed/picsum/450/200" alt="">
      <p>euismod leo. Donec suscipit, augue in consectetur tempor, nisl elit aliquam velit, eget lacinia augue sem non lorem. Ut mattis nec magna id rutrum. Aliquam tempor eu libero sit amet facilisis. Quisque cursus erat at dictum dictum. Vestibulum sagittis, sem sed aliquet lacinia, metus lacus tempor velit, eu iaculis turpis tellus in quam. Nam elementum ipsum ante, sit amet fringilla nisl placerat sit amet.

Suspendisse sit amet sapien at metus ornare porta eget tincidunt libero. Praesent id elit vestibulum, euismod lorem ac, sodales sapien. Nullam sit amet convallis dui. Suspendisse potenti. Duis vel porta tellus. Nulla ut purus malesuada, ultricies mi eget, venenatis metus. Nunc eget tincidunt nibh. Fusce sed metus non enim tincidunt efficitur.</p>
    </div>
</div>
              
            
!

CSS

              
                .container {
  height: 100vh;
  display: flex;
  justify-content: center;
  
  .image-container {
    width: 50%;

    img {
      width: 100%;
      top: 0;
      left: 0;
      object-fit: cover;
      transition: transform .2s ease-out;
      cursor: pointer;

      &:hover {
        transform: scale(1.5);
      }
    }
  }
}


              
            
!

JS

              
                
              
            
!
999px

Console