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

              
                &shy;<main lang="de">
	<h1>Allgemeine Erklärung der Menschen&shy;rechte</h1>
	<p><span><b>Artikel 1.</b> Alle Menschen sind  frei und gleich an Würde und Rechten geboren. Sie sind mit Vernunft und  Gewissen begabt und sollen einander im Geiste der Brüderlichkeit begegnen.</span></p>
	<p><span><b>Artikel 2.</b> Jeder hat Anspruch  auf alle in dieser Erklärung verkündeten Rechte und Freiheiten, ohne  irgendeinen Unterschied, etwa nach Rasse, Hautfarbe, Geschlecht, Sprache,  Religion, politischer oder sonstiger Anschauung, nationaler oder sozialer  Herkunft, Vermögen, Geburt oder sonstigem Stand.</span></p>
	<p><span>Des weiteren darf  kein Unterschied gemacht werden auf Grund der politischen, rechtlichen oder  internationalen Stellung des Landes oder Gebietes, dem eine Person angehört,  gleichgültig ob dieses unabhängig ist, unter Treuhandschaft steht, keine  Selbstregierung besitzt oder sonst in seiner Souveränität eingeschränkt ist.</span></p>
</main>
              
            
!

CSS

              
                :root {
	font-family: Abril Text, Georgia, serif;
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 1.2em;
	font-size: clamp(1em, 3vw, 1.2em);
	line-height: 1.5em;
	line-height: clamp(1.3em, 6vw, 1.5em);
	background: #cde;
}

body {
	margin: 0;
}

main {
	background: white;
	color: black;
	max-width: 64ch;
	margin: 2em;
	margin: clamp(0em, 4vw, 2em);
	padding: 1em 2em;
	position: relative;
}

h1 {
	line-height: initial;
	line-height: 1.1;
	font-family: Abril Display, Georgia, serif;
	font-size: 1.5em;
	font-size: clamp(1.5em, 8vw, 2.5em);
}

p {
	margin-block: 1.5em;
	margin-block: 1lh;
	position: relative;
}

main::before {
/* 	content: '20'; */
	font: 1rem/1 Franklin Gothic Book;
	height: 3em;
	color: red;
	position: absolute;
	bottom: 0;
	border-left: 0.5em solid;
	padding-left: 0.5em;
	display: flex;
	align-items: center;
}

span {
/* 	outline: thin dashed gray; */
/* 	background: white; */
}

/* @media (width < 30em) {
	:root {
		hyphens: auto;
	}
} */
              
            
!

JS

              
                
              
            
!
999px

Console