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

              
                <ul class="accordion__list">
  <li class="accordion__item">
    <!--
      type="checkbox"、id="accordion-1"のinputタグと
      for="accordion-1"のlabelタグを用意する。
      checkboxにチェックが付いたことを検知して、
      アコーディオンの隠れている部分の高さを変える。
    -->
    <input type="checkbox" class="accordion__input" id="accordion-1">
    <label class="accordion__head" for="accordion-1">アコーディオン1の開閉ボタン</label>
    <div class="accordion__body">
      <p>アコーディオン1の中身</p>
    </div>
  </li>
  <li class="accordion__item">
    <!--  -->
    <input type="checkbox" class="accordion__input" id="accordion-2">
    <label class="accordion__head" for="accordion-2">アコーディオン2の開閉ボタン</label>
    <div class="accordion__body">
      <p>アコーディオン2の中身</p>
    </div>
  </li>
  <li class="accordion__item">
    <!--  -->
    <input type="checkbox" class="accordion__input" id="accordion-3">
    <label class="accordion__head" for="accordion-3">アコーディオン3の開閉ボタン</label>
    <div class="accordion__body">
      <p>アコーディオン3の中身</p>
    </div>
  </li>
</ul>
              
            
!

CSS

              
                /*
  アコーディオンそのものの横幅と余白を指定。
  開閉動作に影響なし。
*/
.accordion__list {
  width: 500px;
  padding: 10px;
}

/*
  アコーディオンの開閉をつかさどる、
  type="checkbox" を指定しているinputタグ。
  inputタグそのものは非表示にする。
*/
.accordion__input {
  display: none;
}

/*
  アコーディオンの2つ目以降、上に余白を取る。
  開閉動作に影響なし。
*/
.accordion__item:nth-child(n+2) {
  margin-top: 10px;
}

/*
  アコーディオンの開閉ボタンの装飾。
  position: relative;が無いと、
  「+」「-」の位置がずれるので注意。
*/
.accordion__head {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: #12DE40;
  cursor: pointer;
}

/*
  アコーディオンの開閉ボタンの右側に「+」を表示。
*/
.accordion__head::after {
  content: "+";
  position: absolute;
  top: 8px;
  right: 10px;
}

/*
  アコーディオンの閉じている部分の装飾。
  height: 0; overflow: hidden;にすることで、
  通常時は表示されないようにする。
*/
.accordion__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding: 0 10px;
  background: #e8e8e8;
  transition: all .25s ease;
}

/*
  アコーディオンの開閉ボタン(labelタグ、class="accordion__head")をクリックすると、
  対となっているinputタグ(class="accordion__input")がチェック状態(checked)になる。

  チェック状態のinputタグの隣の隣にある、
  アコーディオンの閉じている部分(class="accordion__body")の
  heightとpaddingを変更し、アコーディオンを開いた状態にする。
*/
.accordion__input:checked + .accordion__head + .accordion__body {
  height: auto;
  padding: 10px;
}

/*
  チェック状態のinputタグの隣にある、開閉ボタンの「+」を「-」に変更する。
*/
.accordion__input:checked + .accordion__head::after
  {
  content: "-";
  right: 13px;
}
              
            
!

JS

              
                
              
            
!
999px

Console