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

              
                <div class="wrapper">
    <div>
      <p>Update 2016 - This has been fixed - YAY! :)</p>   
<p>UPDATE 2015-11-25 -- It looks like a fix for this is in the pipeline: <a href="https://codereview.chromium.org/1457783005">Chromium issue details</a>. Yay!</p>      
			<p>Try resizing this page, the border between two colours should be smooth in most browsers with the dotted line and colour interface matching up. In Chrome the position of the colour change is incorrect and jumps around</p>
      <p>According to <a href="https://code.google.com/p/chromium/issues/detail?id=233879">this bug</a> it is due to Chrome splitting the gradient into 256 sections, and so getting rounding down errors.</p>
      <p>Discovered via <a href="http://stackoverflow.com/questions/23627292/">this Stack Overflow question</a></p>
      <p>Update: Chrome 43 the jumping has been reduced ... but compare this page in Chrome and IE / Firefox to see the difference in rendering.</p>
	</div>
</div>

<div class="wrapper anim"><div>How it looks with gradient:</div></div>

<div class="wrapper anim correct"><div>What it should look like:</div></div>

		
              
            
!

CSS

              
                * { box-sizing: border-box; }

.wrapper {
  background: #f00;
  background: linear-gradient(to right, #ccc 66%, #2989d8 66%);
}

.wrapper div {
  margin: 0 0 6px;
  padding: 6px 12px;
  width:66%;
  border-right: 1px dotted white;
}

.correct {background: #2989d8}
.correct div {background: #ccc}

.anim {
animation: play 20s infinite;
}

@keyframes play {
   from { width: 500px; }
     to { width: 120%; }
}

              
            
!

JS

              
                
              
            
!
999px

Console