CSS - Page Component - Image Slideshow


/ Published in: CSS
Save to your folder(s)

CSS - Page Component - Image Slideshow


Copy this code and paste it in your HTML
  1. .slideshow {
  2. }
  3. .slideshow .item {
  4. display:block;
  5. }
  6. .slideshow .item .image {
  7. }
  8. .slideshow .item .image img {
  9. display:block;
  10. overflow:hidden;
  11. }
  12. .slideshow .item .info {
  13. }
  14. .slideshow .item .info .text {
  15. position:absolute;
  16. padding:10px;
  17. right:0;
  18. bottom:0;
  19. left:0;
  20. font-size:11px; font-size:1.1rem;
  21. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.