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>Bookmarklet to make the text between 45 and 75 characters turn red.</h1>

<p><a class="bookmarklet-link" href="javascript:(function(){function%20loadScript(a,b){var%20c=document.createElement('script');c.type='text/javascript';c.src=a;var%20d=document.getElementsByTagName('head')[0],done=false;c.onload=c.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=='loaded'||this.readyState=='complete')){done=true;b()}};d.appendChild(c)}loadScript('//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js',function(){

var redOutline={outline:'2px solid red'},text;var textyElements='p, li, dt, dd, h1, h2, h3, h4, h5, h6';$(textyElements).on('mouseover.red',function(){$(this).css(redOutline)}).on('mouseleave.red',function(){$(this).removeAttr('style')}).on('click.red',function(){text=$(this).text();var e=text.substring(0,45);var t=text.substring(45,75);var n=text.substring(75,text.length);var r=e+'<span style=\'color: red;\'>'+t+'</span>'+n;$(this).html(r);$(textyElements).off('mouseover.red mouseleave.red click.red');$(this).removeAttr('style');})
            
 })})()">45-75</a>

&larr; Click that. Then hover over a text element and click that.
</p>

<p>Drag it to your Bookmarks bar to save.</p>

<p>Why? Because that's generally the ideal line length for body copy. When those characters are red you can adjust media queries and font-size and stuff until it's about right at any screen size.</p>

<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit amet distinctio ab minus repudiandae earum similique sapiente eos maiores illo ut veniam nisi incidunt quaerat ipsam cum ducimus animi id autem illum. Aliquid consequatur a optio illum blanditiis earum error voluptates suscipit in dignissimos facilis ab perferendis modi itaque ullam nam nostrum laborum velit vero est maiores iste quae nesciunt deserunt qui natus aut laudantium magnam neque fugiat animi accusamus eum dolorem? Accusantium earum beatae minus aspernatur recusandae enim unde qui veniam accusamus atque voluptate numquam! Dignissimos aut aspernatur quae enim ab animi deserunt possimus blanditiis cupiditate nobis incidunt velit.</p>
              
            
!

CSS

              
                /* Mobile First */
body {
  font-family: "Lucida Grande", sans-serif;
  margin: 20px auto;
  width: 95%;
  font-size: 70%;
  line-height: 1.4;
}
@media (min-width: 400px) {
  body { width: 90%; font-size: 75%; }
}
@media (min-width: 700px) {
  body { width: 80%; font-size: 90%; }
}
@media (min-width: 850px) {
  body { width: 70%; font-size: 100%; }
}
@media (min-width: 1000px) {
  body { width: 60%; font-size: 110%; }
}
@media (min-width: 1100px) {
  body { width: 50%; font-size: 115%;}
}
@media (min-width: 1450px) {
  body { width: 40%; font-size: 125%; }
}

p {
  margin: 0 0 1.4rem 0;
}

.bookmarklet-link {
  border-radius: 4px;
  background: linear-gradient(#eee, #ccc);
  padding: 5px 10px;
  border: 1px solid #999;
  color: #222;
  text-decoration: none;
}
              
            
!

JS

              
                
              
            
!
999px

Console