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

              
                <h2>scroll</h2>
<div class="container scroll">
	<div class="content">Aliquam porta metus eleifend risus iaculis, vel aliquet libero laoreet. Nulla pharetra mi at lectus tristique, ut suscipit orci accumsan. Curabitur aliquam vestibulum nisi, ac posuere neque iaculis eu. Duis pellentesque ligula elementum cursus blandit. Etiam eleifend, lorem quis tristique bibendum, augue ipsum dapibus urna, vitae commodo sapien leo sit amet orci. Ut a mi eu nisi sodales porta.
	</div>
</div>

<h2>fixed</h2>
<div class="container fixed">
	<div class="content">Aliquam porta metus eleifend risus iaculis, vel aliquet libero laoreet. Nulla pharetra mi at lectus tristique, ut suscipit orci accumsan. Curabitur aliquam vestibulum nisi, ac posuere neque iaculis eu. Duis pellentesque ligula elementum cursus blandit. Etiam eleifend, lorem quis tristique bibendum, augue ipsum dapibus urna, vitae commodo sapien leo sit amet orci. Ut a mi eu nisi sodales porta.
	</div>
</div>

<h2>local</h2>
<div class="container local">
	<div class="content">Aliquam porta metus eleifend risus iaculis, vel aliquet libero laoreet. Nulla pharetra mi at lectus tristique, ut suscipit orci accumsan. Curabitur aliquam vestibulum nisi, ac posuere neque iaculis eu. Duis pellentesque ligula elementum cursus blandit. Etiam eleifend, lorem quis tristique bibendum, augue ipsum dapibus urna, vitae commodo sapien leo sit amet orci. Ut a mi eu nisi sodales porta.
	</div>
</div>
              
            
!

CSS

              
                .container {
	background: url("https://picsum.photos/500/350") #444;
	overflow-y: scroll;
	height: 350px;
	width: 500px;
	margin: 16px auto 40px;
}

.scroll { 
	background-attachment: scroll; 
}

.local { 
	background-attachment: local; 
}

.fixed { 
	background-attachment: fixed; 
}

.content {
	margin: 24px 48px;
}









body {margin-bottom: 96px;font: 24px/1.8 Poppins, sans-serif;color: white;background: #111;text-shadow: 1px 1px 2px rgba(0,0,0,0.8);}
h2 {font: 32px "Roboto Mono", monospace;margin: 48px auto 24px;text-align: center;}
              
            
!

JS

              
                
              
            
!
999px

Console