Created
April 1, 2019 14:39
-
-
Save yutaide/bb4ec0d8ef832abbf54d3ca85d179546 to your computer and use it in GitHub Desktop.
accordion(1つ目のcardクラス)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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