Advertisement
Guest User

CSS for QA simple slideshow

a guest
Jul 26th, 2015
583
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. .slideshow-item {
  2.         width: 100%;
  3.         overflow: hidden;
  4.         position: relative;
  5. }
  6.  
  7. /* you can style the question and answer as you like beyond this;
  8. I had them each 80% wide and the answer pushed to the right */
  9. .question, .answer {
  10.         position: relative;
  11.         display: none;
  12. }
  13.  
  14. /* No-JS fallback */
  15. .slideshow-item:first-child > * {
  16.         display: block;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement