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 Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
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.
<div class="container">
<header class="header">HEADER</header>
<div class="content">
<div class="menu">
<a>Home</a>
<a>About</a>
<a>Portfolio</a>
<a>Blog</a>
<a>Contact</a>
</div>
<div class="text">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nemo, qui minus. Voluptate repellendus, modi, voluptates nihil pariatur id quasi, iusto voluptatibus tempora ullam quia reiciendis ratione atque in quae fugiat.</p>
<p>Sint voluptatum velit debitis fugit! Illum, provident hic! Itaque commodi quae numquam minus unde, fuga fugit, perspiciatis pariatur amet dicta, vero sint saepe. Eaque, dicta dignissimos pariatur ad commodi soluta.</p>
<p>Voluptas numquam sapiente deserunt velit neque commodi, sunt quas odio repellendus unde laborum adipisci ducimus quo facere ipsa, dignissimos molestiae. Repellendus consequatur vel eaque quia molestiae voluptate excepturi dolore obcaecati!</p>
<p>Molestias hic consequuntur dolores exercitationem, dignissimos est, explicabo dolorem rem corrupti corporis magni voluptates! Nostrum eaque nisi, nulla similique asperiores id molestias quos, fuga, aut natus adipisci saepe consectetur iusto.</p>
<p>Ea, atque quibusdam ex vitae ducimus sed vero in cupiditate quasi ipsam non pariatur quaerat dicta autem quos perferendis velit, fugit rem repellat nemo dignissimos iusto quod, deserunt error! Autem?</p>
<p>Ea blanditiis, soluta quos expedita odio architecto. Doloremque suscipit dolorum debitis libero cumque ea accusamus, animi pariatur quis quidem enim totam iste fugit sed perspiciatis corporis autem quia possimus sit!</p>
<p>Dicta perferendis sapiente doloribus quo? Sunt, repudiandae repellendus recusandae fuga maxime odit. Accusamus eaque sint hic delectus, dicta animi repudiandae ad illum sapiente quasi. Officia vitae fuga numquam soluta perspiciatis.</p>
<p>Error, ipsum id! Iste quis doloremque explicabo, laboriosam voluptatum similique magnam corporis ratione, minima consequuntur minus quos aliquid, fugiat vero autem voluptate ab ea. Molestias sint molestiae sed placeat velit.</p>
<p>Adipisci sapiente eligendi quam consequuntur in expedita iste dicta debitis aliquam quis, non hic deleniti possimus ducimus. Provident mollitia a porro officia pariatur nisi, eligendi officiis, temporibus veniam similique totam.</p>
<p>Enim accusamus perspiciatis neque possimus libero obcaecati commodi nostrum exercitationem amet non ipsa dolor sed in voluptate et nesciunt ab, impedit, repellendus fugiat. Cupiditate vel molestiae, voluptatibus veritatis magnam veniam!</p>
</div>
<div class="text"></div>
</div>
</div>
.menu{
position: sticky;
top: 0;
display: flex;
justify-content: space-around;
background-color: pink;
padding: 10px 0;
font-family: 'Roboto Slab', sans-serif;
text-transform: uppercase;
}
.menu.sticky{
position: fixed;
}
.header{
padding: 40px;
text-align: center;
background-color: yellow;
font-family: 'Roboto Slab', sans-serif;
}
.container {
max-width:90%;
width: 600px;
margin: 0 auto;
position: relative;
}
.text{
min-height: 100vh;
background-color: #ccc;
border-bottom: 2px solid green;
padding: 20px;
}
.text p{
margin-bottom: 20px;
}
@media screen and (max-width: 480px){
.menu a{
font-size: 10px;
}
}
$(function() {
(function fixedMenu() {
var $menu = $(".menu");
if ($menu.length != 0) {
var $menuHeight = $menu.outerHeight();
var $menuMarginBottom = parseFloat( $menu.css("margin-bottom") );
var $menuOffsetY = $menu.offset().top;
var $menuParent = $menu.parent();
var $menuParentPaddingTop = parseFloat( $menuParent.css("padding-top") );
$(window).scroll(fixMenu);
$(window).resize(resizeMenu);
function fixMenu() {
var $menuWidth = $menu.outerWidth();
var $menuParentWidth = $menuParent.outerWidth();
if ($(window).scrollTop() >= $menuOffsetY) {
$menu.addClass("sticky").css({ "width": $menuParentWidth });
$menuParent.css({ "padding-top": $menuHeight + $menuMarginBottom + $menuParentPaddingTop });
} else {
$menu.removeClass("sticky").css({ "width": $menuWidth });
$menuParent.css({ "padding-top": $menuParentPaddingTop });
}
}
function resizeMenu() {
var $menuParentWidth = $menuParent.outerWidth();
$menu.css({ width: $menuParentWidth });
}
}
})();
});
Also see: Tab Triggers