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 lang="de">
	<header>
		<h1>Mascha und der Bär</h1>
	</header>
	<section>
		<h2>Mascha</h2>
		<p>Protagonistin der Serie ist Mascha, ein kleines Mädchen. Sie trägt fuchsiafarbene, traditionelle russische Kleidung, hat blonde Haare und große grüne Augen. Sie ist verspielt, ein Leckermäulchen und immer darauf aus, Spaß zu haben. In der Serie ist sie (von wenigen Gastrollen abgesehen) die einzige Figur, die spricht und der einzige Mensch.</p>
	</section>
	<section>
		<h2>Der Bär</h2>
		<p>Zweiter Hauptdarsteller ist der Bär Mischa. Er war früher Zirkusbär und wollte eigentlich seinen Ruhestand genießen. Er kann zwar nicht sprechen, versteht die menschliche Sprache aber durchaus, kann lesen und macht sich mit Gesten verständlich. In der Serie übernimmt er die Elternrolle für die kleine Mascha.</p>
	</section>
</main>
              
            
!

CSS

              
                *, ::before, ::after { box-sizing: border-box }

body { margin: 2em }

main
{
	max-width: 50em;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
	gap: 2em 4em;
	
	font: 1.2em/1.4 Georgia, serif;
}

header
{
	grid-column: 1/-1;
}

h1
{
	font-size: 1.5em;
	line-height: 1;
	margin: 0;
}

h2
{
	font-size: 1em;
	margin: 0
}

              
            
!

JS

              
                
              
            
!
999px

Console