21_控制元素隐藏显示.html 547 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. div{
  9. width: 200px;
  10. height: 200px;
  11. background-color: red;
  12. }
  13. div span{
  14. /* display : none 隐藏元素 */
  15. /* display: none; */
  16. }
  17. div:hover span{
  18. display: none;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div> <span>hello world</span> </div>
  24. </body>
  25. </html>