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="block">
  простой <div class="inline-block">инлайн-блок</div> и еще <div class="inline-block" style="padding:.3em">один</div>, а потом еще один <div class="inline-block" style="font-size: .75em">маленький</div><br/>
  а тут <div class="inline-block" style="line-height: 52px; padding: 4px;"> большой</div>, и даже <div class="inline-block" style="font-size: .9em; background-color:rgba(128,255,128,.5); padding: 1px 4px;">инлайн-блок<br />в две строки</div><br/>
  по <div class="inline-block" style="vertical-align: bottom">низу</div>, <div class="inline-block" style="vertical-align: middle">середине текста</div>, <div class="inline-block" style="vertical-align: top">верху</div> и пустой <div class="inline-block" style="width: 30px; height: 26px; margin: 5px 0; box-shadow: 0 5px 0 0 rgba(255,0,0,.2),0 -5px 0 0 rgba(255,0,0,.2)"></div>
</div>
              
            
!

CSS

              
                .block {
  margin: auto;
  max-width: 460px;
  min-width: 380px;
  text-align: center;
  font: 18px/40px sans-serif;
  background: linear-gradient(
    #cc8 1px,
    transparent 1px,
    transparent 26px,
    #88c 26px,
    #88c 27px,
    transparent 27px,
    transparent 39px,
    #c88 39px,
    #c88 40px,
    #cc8 40px,
    #cc8 41px,
    transparent 41px,
    transparent 66px,
    #88c 66px,
    #88c 67px,
    transparent 67px,
    transparent 79px,
    #c88 79px,
    #c88 80px,    
    #cc8 80px,
    #cc8 81px,
    transparent 81px,
    transparent 116px,
    #88c 116px,
    #88c 117px,
    transparent 117px,
    transparent 139px,
    #c88 139px,
    #c88 140px,
    #cc8 140px,
    #cc8 141px,
    transparent 141px,
    transparent 176px,
    #88c 176px,
    #88c 177px,
    transparent 177px,
    transparent 189px,
    #c88 189px
  );
  background-position: 0 0;
  background-repeat: no-repeat;
}

.inline-block {
  display: inline-block;
  outline: 1px solid #8c8;
  outline-offset: -1px;
  line-height: 1.1;
  background: rgba(255,255,128,.4);
}
              
            
!

JS

              
                
              
            
!
999px

Console