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.
.bubble.left I JUST CAN'T BELIVE IT.
br
| THIS BUBBLE IS AWESOME
br
.bubble.right YEAH I KNOW..
br
| I HEARD THIS GUY DID IT WITH PURE CSS
br
.bubble.left TRUST ME, THIS IS LIKE SOOOOOO AMAZING.
br
| HE TOLD ME HE USED 3 LAYERS OF BOX-SHADOW
br
| TO CREATE THE TAIL.
br
| AND EVERYTHING IS DONE WITH JUST ONE ELEMENT
br
.bubble.think.left WAIT UNTIL HE FINDS OUT THAT HE CAN USE THINK BUBBLES.
br
.bubble.right WELL, THAT SEEMS SMART.
br
| SO THIS BASICALLY WORKS IN ANY BROWSER, IE9 AND LATER?
br
.bubble.left IT SURE DOES.
br
| THERE'S NOTHING TOO SPECIAL ABOUT THIS.
br
.bubble.right NIIIICEEE.
br
| I'LL LIKE SOOOO USE IT ON MY NEXT PROJECT.
br
| WHAAAAA LIKE... RESIZE THE BROWSER DUDE.
br
| THIS IS FULLY FLUID.
br
.bubble.left GROW UP MAN.
br
| NOT FLUID OR RESPONSIVE IS OLDSCHOOL AND STUPID.
br
.bubble.think.left OH HOW I HATE THOSE NOOBS.
br
.bubble.think.right YOU DON'T HAVE TO BE SO ARROGANT ABOUT IT.
br
| UHH..? I CAN THINK TOO?
br
.bubble.right SO I GUESS YOU FOUND OUT ABOUT THE THINK BUBBLES TOO?
br
.bubble.think.left HA... TOLD YA THE THINK BUBBLES WOULD AMAZE HIM.
br
.bubble.left DUHH... WHAT'S A BUBBLE WITHOUT A THINK-OPTION?
br
.bubble.yell.right QUIT BEING SO FRIGGIN ARROGANT DUDE!!!
br
| YOU DON'T GOTTA BE ACTIN' LIKE YOU KNOW EVERYTHING
br
.bubble.left UHH? HOW DID YOU DO THAT BUBBLE?
br
.bubble.yell.right OH, I BET YOU'D LIKE TO KNOW... MR. KNOW-IT-ALL
br
| I AIN'T TELLIN' YA, THAT'S FOR SURE!
br
.bubble.think.right WHAT A NOOB...
@import url(https://fonts.googleapis.com/css?family=Permanent+Marker);
body {
background: #af9;
}
.bubble {
display: inline-block;
position: relative;
padding: 30px 40px;
border-radius: 10px;
border: 3px solid black;
background: white;
font-family: "Permanent Marker";
clear: both;
&:before {
content: '';
position: absolute;
bottom: -50px;
height: 50px;
width: 90px;
}
&.left {
float: left;
margin: 10px 100px 60px 10px;
&:before {
border-radius: 0 0 100%;
box-shadow:
-2px -2px 0 0 #000 inset,
-23px 0 0 0 #fff inset,
-25px -2px 0 0 #000 inset;
left: 0;
}
}
&.right {
float: right;
margin: 10px 10px 60px 100px;
&:before {
border-radius: 0 0 0 100%;
box-shadow:
2px -2px 0 0 #000 inset,
23px 0 0 0 #fff inset,
25px -2px 0 0 #000 inset;
right: 0;
}
}
&.think {
&:before {
height: 3px;
width: 3px;
bottom: -20px;
border-radius: 100%;
background: #fff;
}
&.left:before {
left: 50px;
box-shadow:
0 0 0 7px white,
0 0 0 10px black,
-20px 15px 0 5px white,
-20px 15px 0 8px black,
-40px 20px 0 2px white,
-40px 20px 0 5px black;
}
&.right:before {
right: 50px;
box-shadow:
0 0 0 7px white,
0 0 0 10px black,
20px 15px 0 5px white,
20px 15px 0 8px black,
40px 20px 0 2px white,
40px 20px 0 5px black;
}
}
&.yell {
&:before {
height: 0px;
width: 0px;
bottom: -8px;
border-radius: 0;
background: #fff;
}
&:after {
content: '';
position: absolute;
bottom: -41px;
height: 20px;
width: 59px;
}
&.left {
&:before {
transform: skew(-45deg);
left: 50px;
box-shadow:
//0 0 0 7px white,
0 -3px 0 5px white,
0 0 0 5px white,
0 8px 0 5px white,
8px 8px 0 5px white,
16px 8px 0 5px white,
24px 8px 0 5px white,
0 0 0 8px black,
0 8px 0 8px black,
8px 8px 0 8px black,
16px 8px 0 8px black,
24px 8px 0 8px black;
}
&:after {
border-radius: 0 0 60%;
transform: skew(-45deg);
box-shadow:
-3px -2px 0 0 #000 inset,
-14px 0 0 0 #fff inset,
-17px -2px 0 0 #000 inset;
left: 0;
}
}
&.right {
&:before {
transform: skew(45deg);
right: 50px;
box-shadow:
0 -3px 0 5px white,
0 0 0 5px white,
0 8px 0 5px white,
-8px 8px 0 5px white,
-16px 8px 0 5px white,
-24px 8px 0 5px white,
0 0 0 8px black,
0 8px 0 8px black,
-8px 8px 0 8px black,
-16px 8px 0 8px black,
-24px 8px 0 8px black;
}
&:after {
border-radius: 0 0 0 60%;
transform: skew(45deg);
box-shadow:
3px -2px 0 0 #000 inset,
14px 0 0 0 #fff inset,
17px -2px 0 0 #000 inset;
right: 0;
}
}
}
}
Also see: Tab Triggers