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

              
                <dl class="sample">
  <dt>SEO</dt>
    <dd>検索エンジン最適化(SEO)とは、検索結果において、ウェブページをより高い順位に表示させることを目的として行う取り組みのこと。</dd>
 
  <dt>スタイルシート</dt>
    <dd>スタイルシートとは、構造化文書などにおける表示形式を制御するしくみ。見栄えと構造を分離するという目的で提唱された。HTML、XML、SGMLといったマークアップ文書や、オフィスソフトにおいて広く使用されている。</dd>
 
  <dt>HTML</dt>
    <dd>HTMLは、ハイパーテキストを記述するためのマークアップ言語の1つである。World Wide Web (WWW)において、ウェブページ(1990年代後半頃からはコンテンツという語も利用されている。「中身」という意味の語であり、大層な意味は無い)を表現するために用いられる。</dd>
 
  <dt>マーケティング</dt>
    <dd>マーケティングとは、企業などの組織が行うあらゆる活動のうち、「顧客が真に求める商品やサービスを作り、その情報を届け、顧客がその価値を効果的に得られるようにする」ための概念である。</dd>
</dl>

              
            
!

CSS

              
                .sample dt{
  background:#8484ff;
  color:#fff;
  padding:2px 0 2px 1.0em;
  height:1.5em;
  line-height:1.5em;
  margin-top: 0;
}
.sample dd{
  border:2px solid #8484ff;
  margin-left:0;
  padding:.5em 1.0em;
  font-size: .8em;
}
.sample dt:first-child{
      -webkit-border-top-left-radius:8px;  
    -webkit-border-top-right-radius:8px;  
    -moz-border-radius-topleft:8px;  
    -moz-border-radius-topright:8px;  
  }
.sample dd:last-child{
      -webkit-border-bottom-left-radius:8px;  
    -webkit-border-bottom-right-radius:8px;  
    -moz-border-radius-bottomleft:8px;  
    -moz-border-radius-bottomright:8px;  
  }
.sample dd {
    margin-bottom: 0;
}
              
            
!

JS

              
                
              
            
!
999px

Console