index.html 446 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>выпадающие картинки</title>
  6. </head>
  7. <body>
  8. <style type="text/css">
  9. .img1, .img2{
  10. display: inline-block;
  11. height: 100px;
  12. width: 100px;
  13. position: absolute;
  14. top: 100px;
  15. left: 30px;
  16. }
  17. .img2:hover {top:90px ;}
  18. </style>
  19. <img class="img1" src="img2.jpeg">
  20. <img class="img2" src="img1.jpeg">
  21. </body>
  22. </html>