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

Save Automatically?

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

              
                <table class="sample-table">
  <tbody>
    <tr>
      <th>会社名</th>
      <td>株式会社○○○○</td>
    </tr>
    <tr>
      <th>住所</th>
      <td>〒160-0013<br>東京都新宿区霞ヶ丘町○○○○</td>
    </tr>
    <tr>
      <th>電話番号</th>
      <td>03-○○○○-○○○○</td>
    </tr>
    <tr>
      <th>代表者</th>
      <td>代表取締役 ○○ ○○○</td>
    </tr>
  </tbody>
</table>
              
            
!

CSS

              
                /* テーブル */
table.sample-table {
  /* 中央揃え + 上下20pxのマージン */
  margin: 20px auto;
  /* テーブルの幅 */
  width: 500px;
  /* 境界なし */
  border-collapse: collapse;
}

/* テーブルの見出し */
table.sample-table th {
  /* 中央揃え */
  text-align: center;
  /* 太字 */
  font-weight: bold;
}

/* テーブルの見出しとセル */
table.sample-table th,
table.sample-table td {
  /* ボーダー(上) */
  border-top: 1px solid;
  /* パディング(上下左右) */
  padding: 15px;
}

/* テーブルの最後の見出しとセル */
table.sample-table tr th:last-of-type,
table.sample-table tr td:last-of-type {
  /* ボーダー(下) */
  border-bottom: 1px solid;
}

/* ホバー状態 */
table.sample-table tr:hover {
  /* 背景色を薄いグレー */
  background-color: #F2F2F2;
}
              
            
!

JS

              
                
              
            
!
999px

Console