Search
 
SCRIPT & CODE EXAMPLE
 

HTML

accordion

1
2
3
4
5
6
<div id="accordion">
  <h3>First header</h3>
  <div>First content panel</div>
  <h3>Second header</h3>
  <div>Second content panel</div>
</div>
Comment

accordion

<details>
  <summary> Detailed description</summary>
   This is an accordion and you can use buttons here or whatever tag you want.
   ive stylized it a little to make it look more modern
   but the default should be good enough too
</details>

// css

details {
      border: 1px solid #aaa;
      border-radius: 4px;
      padding: 0.5em 0.5em 0;
    }
 
    summary {
      font-weight: bold;
      margin: -0.5em -0.5em 0;
      padding: 0.5em;
    }
 
    details[open] {
      padding: 0.5em;
      transition: all 0.5s;
    }
 
    details[open] summary {
      transition: all 0.5s;
      border-bottom: 1px solid #aaa;
      margin-bottom: 0.5em;
    }
 
    details > summary {
      list-style-type: "+";
      cursor: pointer;
    }
 
    details[open] > summary {
      list-style-type: "-";
      cursor: pointer;
    }
Comment

PREVIOUS NEXT
Code Example
Html :: html percentage 
Html :: html disable button tag 
Html :: tabs characters in html 
Html :: date of birth select box in html 
Html :: allow multiple select on radio button in html 
Html :: what does ul mean html 
Html :: td e tr html 
Html :: link mui 
Html :: html deactivate scrolling 
Html :: node mailer send html 
Html :: autocomplete off not working in chrome 
Html :: get id value of html dropdown in jquery 
Html :: simple html report template 
Html :: unordered list html 
Html :: draggable html 
Html :: html to text npm 
Html :: Serve images in nextgen formats webp 
Html :: import html display 
Html :: how to stop marquee text when you move your mouse over it 
Html :: the function tag in js 
Html :: how do i link back out a folder using th a-href tag 
Html :: happy birthday code in html 
Html :: button color bootstrap 
Html :: add html to page chrome extension 
Html :: contenteditable attribute 
Html :: Font Awesome icons html code 
Html :: give padding to label html 
Html :: html radio input 
Html :: html images @2x 
Html :: favicon 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =