Skip to content

Instantly share code, notes, and snippets.

@yutaide
Created April 1, 2019 14:39
Show Gist options
  • Select an option

  • Save yutaide/bb4ec0d8ef832abbf54d3ca85d179546 to your computer and use it in GitHub Desktop.

Select an option

Save yutaide/bb4ec0d8ef832abbf54d3ca85d179546 to your computer and use it in GitHub Desktop.
accordion(1つ目のcardクラス)
<div class="card">
<div class="card-header" id="heading1">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse1" aria-expanded="true" aria-controls="collapse1">アコーディオン表示その1</button>
</h2>
</div>
<div id="collapse1" class="collapse show" aria-labelledby="heading1" data-parent="#accordionExample">
<div class="card-body">
カードの中身1
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment