HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<body>
<header>
<h1>Real World Scenario Flexbox Example</h1>
<p class="subhead">Common Design Pattern • Equal Height Columns With A Grounded Button (Or Other Element)</p>
</header>
<section>
<article>
<h2>First Article</h2>
<div>
<p>Lorem ipsum dolor amet offal unicorn swag kitsch yr cliche neutra squid, cronut locavore deep v kinfolk fixie master cleanse. Meh wolf yr dreamcatcher, banh mi +1 hexagon. Humblebrag raclette irony everyday carry glossier single-origin coffee air plant. Tbh letterpress bicycle rights, synth bespoke fanny pack fixie selfies 8-bit succulents lomo. Messenger bag hella vexillologist, letterpress vegan fingerstache hammock everyday carry iPhone vice tbh +1 brooklyn authentic.</p>
</div>
<div class="button-wrapper">
<button>Smile</button>
</div>
</article>
<article>
<h2>Second Article</h2>
<div>
<p>Yr meditation tacos shoreditch, put a bird on it bicycle rights butcher forage. Twee prism readymade activated charcoal, meggings bushwick you probably haven't heard of them narwhal craft beer 8-bit ramps plaid offal PBR&B franzen. Bitters artisan humblebrag mumblecore readymade brunch hot chicken umami narwhal iPhone. Normcore listicle photo booth pug butcher pork belly.</p>
<p>Vexillologist migas four dollar toast, tacos unicorn semiotics echo park pitchfork freegan vegan sartorial taiyaki. Tumblr poke cloud bread unicorn pork belly cliche taxidermy food truck brunch vaporware distillery schlitz.</p>
</div>
<div class="button-wrapper">
<button>Laugh</button>
</div>
</article>
<article>
<h2>Third Article</h2>
<div>
<p>La croix pok pok seitan, fanny pack woke kale chips tote bag. Narwhal put a bird on it la croix farm-to-table you probably haven't heard of them, hell of roof party salvia. Mumblecore man braid flexitarian activated charcoal keffiyeh slow-carb gluten-free kinfolk locavore dreamcatcher humblebrag DIY vexillologist yuccie distillery. Vexillologist migas four dollar toast, tacos unicorn semiotics echo park pitchfork freegan vegan sartorial taiyaki. Tumblr poke cloud bread unicorn pork belly cliche taxidermy food truck brunch vaporware distillery schlitz. Disrupt tumblr photo booth, irony hoodie knausgaard echo park. Gentrify banjo fixie messenger bag.</p>
<p>Chicharrones vice four dollar toast keytar bushwick distillery man bun pinterest plaid. Celiac enamel pin ramps thundercats actually. Irony wayfarers chartreuse pinterest poutine green juice, vinyl biodiesel truffaut air plant poke fingerstache.</p>
</div>
<div class="button-wrapper">
<button>Hug</button>
</div>
</article>
</section>
</body>
/* General Styles */
body {
margin: 0;
font: 18px "Helvetica Neue Light", Helvetica, Arial, sans-serif;
}
header {
color: white;
background: black;
padding: 2rem;
}
p.subhead {
font-size: 1.5rem;
line-height: 2rem;
}
h1 {
line-height: 2.5rem;
font-weight: normal;
letter-spacing: 0.15em;
}
h1,
p.subhead {
text-align: center;
color: white;
}
h2 {
font-size: 1.5rem;
font-weight: normal;
}
/* End General Styles */
article {
display: flex;
flex-flow: column;
flex: 1 200px; /* Each flex item will first be given 200px of the available space. After that, the rest of the available space will be shared out according to the proportion units. */
padding: 1rem;
margin: 0.5rem;
background: lightgray;
}
section {
display: flex;
flex-flow: row wrap; /* Responsive. Shorthand for direction and wrap. */
}
/* Uncomment to put the button in the center.
.button-wrapper {
text-align: center;
width: 100%;
}
*/
button {
border-radius: 5px;
font-size: 1.25em;
line-height: 1.5;
margin: 0.5em;
padding: 1% 5%;
}
button:hover {
color: darkgray;
background-color: white;
}
/* We only need to do this for landscape and larger devices. */
@media only screen and (min-width: 481px) {
article div:nth-child(2) {
/* Let the middle content
grow to naturally push
the button down. */
flex: 1;
}
/* Previous way was to manipulate
the last child div to ground
the button towards the bottom.
This works, but it's not as
elegant making the middle
content (2nd div) grow which
naturally pushes the button
down towards the bottom.
article div:last-child {
flex: 1 100px;
display: flex;
align-items: flex-end; Ground the button .
justify-content: left;
*/
}
}
Also see: Tab Triggers