Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. I would use a checkbox instead so you can just use a label if you want to link to it:
  2.  
  3.  
  4.  
  5. <!-- begin snippet: js hide: false console: true babel: false -->
  6.  
  7. <!-- language: lang-css -->
  8.  
  9. .spoilerbutton {
  10. display: none;
  11. }
  12.  
  13. .spoiler {
  14. overflow: hidden;
  15. height:2em;
  16. }
  17.  
  18. .spoiler>div {
  19. -webkit-transition: all 0s ease;
  20. -moz-transition: margin 0s ease;
  21. -o-transition: all 0s ease;
  22. transition: margin 0s ease;
  23. }
  24.  
  25. .spoilerbutton+.spoiler>div {
  26. margin-top: -500%;
  27. }
  28. .spoilerbutton+.spoiler>label:before {
  29. content: 'Antwoord';
  30. font-size: 150%;
  31. font-weight: bold;
  32. color: #000000;
  33. }
  34. .spoilerbutton:checked+.spoiler>label:before {
  35. content: 'Verberg';
  36. }
  37.  
  38. .spoilerbutton:checked+.spoiler {
  39. height:auto;
  40. }
  41. .spoilerbutton:checked+.spoiler>div {
  42. margin-top: 0;
  43. }
  44.  
  45. <!-- language: lang-html -->
  46.  
  47. <strong>1. Question 1?</strong> <input type="checkbox" id="question1" value="checked" class="spoilerbutton">
  48. <div class="spoiler">
  49. <label for="question1"></label>
  50. <div>
  51. <ul>
  52. <li><a href="#question2"><label for="question2">Open 2.</label></a></li>
  53. <li>possible answer 2.</li>
  54. <li>possible answer 3.</li>
  55. </ul>
  56. </div>
  57. </div>
  58. <strong>2. Question 2?</strong> <input type="checkbox" id="question2" value="checked" class="spoilerbutton">
  59. <div class="spoiler">
  60. <label for="question2"></label>
  61. <div>
  62. <ul>
  63. <li>possible answer 1.</li>
  64. <li>possible answer 2.</li>
  65. <li>possible answer 3.</li>
  66. </ul>
  67. </div>
  68. </div>
  69.  
  70. <!-- end snippet -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement