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="shape"></div>
	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Venenatis cras sed felis eget. Adipiscing elit duis tristique sollicitudin nibh sit amet commodo. Nullam eget felis eget nunc lobortis mattis. Elit duis tristique sollicitudin nibh sit. Lorem donec massa sapien faucibus et molestie ac feugiat sed. Porta non pulvinar neque laoreet suspendisse interdum consectetur. Diam in arcu cursus euismod quis viverra. Morbi tempus iaculis urna id. Facilisis leo vel fringilla est. Tristique risus nec feugiat in fermentum posuere urna nec tincidunt. Lorem dolor sed viverra ipsum nunc aliquet bibendum enim.</p>

<p>Ultricies leo integer malesuada nunc. Sit amet est placerat in egestas erat imperdiet sed euismod. Nisl condimentum id venenatis a condimentum vitae sapien pellentesque habitant. Porttitor leo a diam sollicitudin. Blandit libero volutpat sed cras ornare arcu dui. Nisi porta lorem mollis aliquam ut. Augue lacus viverra vitae congue eu consequat ac. Cras ornare arcu dui vivamus arcu felis bibendum. Duis convallis convallis tellus id interdum velit laoreet. Vel quam elementum pulvinar etiam non quam lacus suspendisse faucibus. Ornare aenean euismod elementum nisi. Ullamcorper eget nulla facilisi etiam. Id diam vel quam elementum.</p>
</div>
              
            
!

CSS

              
                * {
	box-sizing: border-box;
}

.container {
	max-width: 900px;
	background-color: #B3E5FC;
}

.shape {
	float: left;
	width: 250px;
	height: 400px;
	shape-outside: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85648/curved-shape.svg);
}
              
            
!

JS

              
                
              
            
!
999px

Console