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="mixed">
  <h2>text-orientation: mixed</h2>
  <p>
    2010年1月4日生まれ。Web関連の情報やデザイン、サイト制作を記事にしています。サイト名の由来は、「Webクリエイターなんちゃらにしよう!」と思っていました。そこでなぜか頭によぎったのがフィジーのマナ島の伝説にある「幸福の箱(Mana’s Box)」。じゃ、これで。って事で「Webクリエイターボックス」に決まりました。
  </p>
</div>
<div class="upright">
  <h2>text-orientation: upright</h2>
  <p>
    2010年1月4日生まれ。Web関連の情報やデザイン、サイト制作を記事にしています。サイト名の由来は、「Webクリエイターなんちゃらにしよう!」と思っていました。そこでなぜか頭によぎったのがフィジーのマナ島の伝説にある「幸福の箱(Mana’s Box)」。じゃ、これで。って事で「Webクリエイターボックス」に決まりました。
  </p>
</div>
<div class="sideways">
  <h2>text-orientation: sideways</h2>
  <p>
    2010年1月4日生まれ。Web関連の情報やデザイン、サイト制作を記事にしています。サイト名の由来は、「Webクリエイターなんちゃらにしよう!」と思っていました。そこでなぜか頭によぎったのがフィジーのマナ島の伝説にある「幸福の箱(Mana’s Box)」。じゃ、これで。って事で「Webクリエイターボックス」に決まりました。
  </p>
</div>
              
            
!

CSS

              
                body{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 30px;
  line-height: 1.4;
}
div {
  margin-left: 30px;
}
h2 {
  font-weight: bold;
  font-size: 1.4rem;
  margin-left: 18px;
}
.mixed {
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
}
.upright {
  -webkit-text-orientation: upright;
  text-orientation: upright;
}
.sideways {
  -webkit-text-orientation: sideways;
  text-orientation: sideways;
}
              
            
!

JS

              
                
              
            
!
999px

Console