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

              
                <h1>Totally fake survey results of smiley preferences.</h1>
<figure aria-hidden="true">
	<div class="graph">
		<span class="graphRowLabel">100</span>
		<span class="graphRowLabel">90</span>
		<span class="graphRowLabel">80</span>
		<span class="graphRowLabel">70</span>
		<span class="graphRowLabel">60</span>
		<span class="graphRowLabel">50</span>
		<span class="graphRowLabel">40</span>
		<span class="graphRowLabel">30</span>
		<span class="graphRowLabel">20</span>
		<span class="graphRowLabel">10</span>
		<div class="graphBar"></div>
		<div class="graphBar"></div>
		<div class="graphBar"></div>
		<div class="graphBar"></div>
		<div class="graphBar"></div>
		<span><sup>Y </sup>&frasl;<sub> X</sub></span>
		<span class="graphColumnLabel">😊</span>
		<span class="graphColumnLabel">πŸ˜„</span>
		<span class="graphColumnLabel">☺️</span>
		<span class="graphColumnLabel">😁</span>
		<span class="graphColumnLabel">πŸ˜€</span>
	</div>
	<figcaption>Made with CSS Grid πŸ’›</figcaption>
</figure>
<span class="screenreader-text">Smiling face with squinting eyes: 10%, grinning face with squinting eyes: 65%, smiling face: 52%, grinning face with smiling eyes: 100%, and grinning face: 92%.</span>
              
            
!

CSS

              
                .graph {
	display: grid;
	grid: repeat(10, auto) max-content / max-content repeat(5, auto);
	height: 100%;
}
/* graph bars */
.graphBar {
	grid-row: 1 / -2;
	border-radius: 0 0 50% 50% / 0 0 10px 10px;
	background: palegoldenrod
		linear-gradient(to top, gold var(--h), transparent var(--h));
	justify-self: center;
	width: 45px;
	height: 100%;
	box-shadow: 0 0 3px lightgrey;
}
.graphBar:nth-of-type(1) {
	grid-column: 2;
	--h: 10%;
}
.graphBar:nth-of-type(2) {
	grid-column: 3;
	--h: 65%;
}
.graphBar:nth-of-type(3) {
	grid-column: 4;
	--h: 52%;
}
.graphBar:nth-of-type(4) {
	grid-column: 5;
	--h: 100%;
}
.graphBar:nth-of-type(5) {
	grid-column: 6;
	--h: 92%;
}
/* graph bar edges */
.graphBar::before,
.graphBar::after {
	display: block;
	content: "";
	height: 20px;
	border-radius: 50% / 10px;
}
.graphBar::before {
	margin-top: -10px;
	background-color: darkkhaki;
}
.graphBar::after {
	background-color: darkgoldenrod;
	position: relative;
	top: calc(100% - var(--h) - 20px);
}
/* graph  labels */
.graphRowLabel {
	margin-top: -0.5em;
}
.graphColumnLabel {
	justify-self: center;
	margin-top: 6px;
	text-shadow: 0 0 2px palegoldenrod;
	font-size: 14pt;
}
.graphRowLabel::after {
	display: inline-block;
	content: "\2000\2000\2014";
}
.graphRowLabel:nth-of-type(1)::after {
	content: "\2000\2014";
}
body {
	font-family: "crimson text";
	background: linear-gradient(to top right, dodgerblue, deepskyblue);
	color: cornsilk;
	height: 100vh;
	font-weight: bold;
	overflow: hidden;
	text-shadow: 0 0 1px grey;
}
figure {
	width: 98vw;
	max-width: 600px;
	height: 420px;
	margin: 60px auto auto auto;
}
figcaption {
	text-align: center;
	margin-top: 30px;
}
h1 {
	text-align: center;
	font-size: 14pt;
	margin-bottom: 0;
}
.screenreader-text {
	display: block;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

              
            
!

JS

              
                
              
            
!
999px

Console