Advertisement
Guest User

css3 accordion code markup

a guest
Jul 7th, 2012
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.52 KB | None | 0 0
  1. <article class="ac-container">
  2.     <div>
  3.         <input id="ac-1" name="accordion-1" type="checkbox" />
  4.         <label for="ac-1">About us</label>
  5.         <section class="ac-small">
  6.             <p>Some content... </p>
  7.         </section>
  8.     </div>
  9.     <div>
  10.         <input id="ac-2" name="accordion-1" type="checkbox" checked />
  11.         <label for="ac-2">How we work</label>
  12.         <section class="ac-medium">
  13.             <p>Some content... </p>
  14.         </section>
  15.     </div>
  16.     <div><!--...--></div>
  17. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement