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="demo">
  <div class="element">
  
  </div>
  <p>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis dicta inventore nulla ullam est sed voluptates in iusto dolores neque vel dolore quibusdam consequatur delectus alias nobis magni hic sunt.Lorem ipsum dolor sit amet, consectetur adipisicing elit. Hic similique minus facere laborum possimus natus voluptates aperiam cum voluptas deserunt est incidunt suscipit nulla autem laudantium dolor ratione eius tempora.</p>
  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab quasi saepe consectetur reprehenderit nostrum at enim provident quaerat harum error quod ea suscipit aspernatur ipsa nesciunt quidem voluptatum vitae fugit?</p>
</div>
<div class="demo">
  <div class="element element-2">
  </div>
  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repudiandae quidem ducimus natus ratione veritatis consequatur quasi perspiciatis dolorem aut iusto debitis eius odit illo animi inventore reprehenderit corrupti sed obcaecati.Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam laborum molestias tempore quod ex beatae inventore in magni dolores tempora maxime temporibus sequi ut commodi consectetur soluta vitae dolorum! Nemo.
  Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quas quos ut dicta neque eligendi consequatur dolores iure omnis repellat dolor beatae unde odio tempore iusto praesentium ab esse modi incidunt.</p>
</div>
              
            
!

CSS

              
                @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400);
* {
  margin: 0; 
  padding: 0;
}
body {
  min-height: 1000px;
}
.demo {
  margin: 50px auto;
  font-family: "Open Sans";
  overflow: hidden;
  width: 700px;
}

.element {
  background-color: purple;
  width: 250px;
  height: 150px;
  float: left;
  border-radius: 50px;
  /* margin-bottom: 50px; */
  margin: 10px;
}
.element-2 {
  shape-outside: inset(0px round 50px) border-box;
  shape-margin: 10px;
}

              
            
!

JS

              
                
              
            
!
999px

Console