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

Save Automatically?

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

              
                //- FizzBuzz is an introductory problem in computer science, and is sometimes asked in interviews. The problem goes as follows:</p>

//- Write a program that prints the numbers from 1 to 100 and for multiples of ‘3’ print “Fizz” instead of the number and for the multiples of ‘5’ print “Buzz”. For multiples of 3 and 5 print “FizzBuzz”.

//- This CodePen is an implementation of FizzBuzz in CSS, with some adjustments for the purposes of relevance and beauty. Resize the window to see the beautiful patterns created by math!

p(class="notice") Resize the window to see the patterns change!
section(class="grid")
	- for (var i = 1; i <= 1000; ++i) {
		b
	- }

              
            
!

CSS

              
                // "Print numbers from 1 to 100"
b {
	background-color: lightskyblue;
	height: 30px;
	width: 30px;
}

// "For every third item print Fizz"
b:nth-child(3n) {
	background-color: azure;
}

// "For every fifth item print Buzz"
b:nth-child(5n) {
	background-color: peachpuff;
}

// "For third and fifth item print FizzBuzz"
b:nth-child(15n) {
	background-color: dodgerblue;
}

body {
	overflow: hidden;
}

.grid {
	display: flex;
	flex-wrap: wrap;
}

.info {
	font-size: 16px;
	padding: 0 10px;
	border: 2px solid lightgray;
	margin: 10px;
	background-color: white;
	position: absolute;
	bottom: 0;
}

blockquote {
	font-style: italic;
}

.notice {
	position: absolute;
	background-color: white;
	padding: 1rem 1.5rem;
	font-weight: bold;
}
              
            
!

JS

              
                
              
            
!
999px

Console