37_显示隐藏.html 534 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 100px;
  10. height: 100px;
  11. background-color: red;
  12. /* opacity: 0; */
  13. display: none;
  14. }
  15. button:hover + .box{
  16. display: block;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <button>显示/隐藏</button>
  22. <div class="box"></div>
  23. hello
  24. </body>
  25. </html>