Search
 
SCRIPT & CODE EXAMPLE
 

HTML

bootstrap accordion snippet

<div class="accordion" id="accordionExample">
  <div class="card">
    <div class="card-header" id="headingOne">
      <h2 class="mb-0">
        <button class="btn btn-link btn-block text-left" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
          Collapsible Group Item #1
        </button>
      </h2>
    </div>

    <div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
      <div class="card-body">
        Some placeholder content for the first accordion panel. This panel is shown by default, thanks to the <code>.show</code> class.
      </div>
    </div>
  </div>
  <div class="card">
    <div class="card-header" id="headingTwo">
      <h2 class="mb-0">
        <button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
          Collapsible Group Item #2
        </button>
      </h2>
    </div>
    <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
      <div class="card-body">
        Some placeholder content for the second accordion panel. This panel is hidden by default.
      </div>
    </div>
  </div>
  <div class="card">
    <div class="card-header" id="headingThree">
      <h2 class="mb-0">
        <button class="btn btn-link btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
          Collapsible Group Item #3
        </button>
      </h2>
    </div>
    <div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
      <div class="card-body">
        And lastly, the placeholder content for the third and final accordion panel. This panel is hidden by default.
      </div>
    </div>
  </div>
</div>
Comment

PREVIOUS NEXT
Code Example
Html :: how todownload exe file html 
Html :: twig not render 
Html :: flask base models 
Html :: mat-form date pickerwith hints 
Html :: image taggen docker 
Html :: mozilla date input 
Html :: html datalist 
Html :: email verification template html 
Html :: <a href="#"<div class="fab fa-instagram"</i</a 
Html :: html entity for $ 
Html :: jquery get innerhtml of span 
Html :: metabase 
Html :: icon inside input 
Html :: c# to html 
Html :: mvc 5 required field validation not working 
Html :: dynamic html table python 
Html :: spellcheck html 
Html :: html classes 
Html :: html to jpg 
Html :: simple form time input 
Html :: dir in html 
Html :: how to show data in html table from database in multiple table in laravel 
Html :: html style guide 
Html :: openGraph 4 
Html :: html multi like tag indentation convention 
Html :: compile haml to html 
Html :: embed gist github on iframe 
Html :: youtube download video html 
Html :: disable the hashtag to go to top 
Html :: http://www.w3.org/1999/xhtml 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =