Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .dropdown {
  6. position: relative;
  7. display: inline-block;
  8. }
  9.  
  10. .dropdown-content {
  11. display: none;
  12. position: absolute;
  13. background-color: #f9f9f9;
  14. min-width: 160px;
  15. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  16. z-index: 1;
  17. }
  18.  
  19. .dropdown:hover .dropdown-content {
  20. display: block;
  21. }
  22.  
  23. .desc {
  24. padding: 15px;
  25. text-align: center;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30.  
  31. <h2>Dropdown Image</h2>
  32. <p>Move the mouse over the image below to open the dropdown content.</p>
  33.  
  34. <div class="dropdown">
  35. <img src="img_fjords.jpg" alt="Trolltunga Norway" width="100" height="50">
  36. <div class="dropdown-content">
  37. <img src="img_fjords.jpg" alt="Trolltunga Norway" width="300" height="200">
  38. <div class="desc">Beautiful Trolltunga, Norway</div>
  39. </div>
  40. </div>
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement