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="wrap">
  <h1>run-in box</h1>
  <p>run-in框的行为如下:</p>
  <ol>
    <li>如果run-in框包含一个块框,那么run-in框变为块框。</li>
    <li>如果run-in框的后继兄弟元素为块框(非浮动,非绝对定位),那么run-in框变为该块框的第一个行内框。run-in不能插入本身为run-in的块中,也不能插入块中已有run-in的块中。</li>
    <li>否则,run-in框变为块框。</li>
  </ol>
  <p>浏览器支持:IE8+,chrome(unsupport)</p>
  <h2>case 1</h2>
  <div class="run-in-box">
    <p>some text...</p>
  </div>
  <div>some other text....</div>
  <h2>case 2</h2>
  <h3 class="run-in-box">A run-in heading.</h3>
  <p>And a paragraph of text that follows it.</p>
  <h2>case 3</h2>
  <h3 class="run-in-box">A run-in heading.</h3>
  <span>And a span of text that follows it.</span>
</div>
              
            
!

CSS

              
                .wrap {
  width: 800px;
  margin: 0 auto;
}

.run-in-box {
  display: run-in;
}

li {
  line-height: 1.6;
}

h2 {
  margin-top: 60px;
}
              
            
!

JS

              
                
              
            
!
999px

Console