23_透明.html 697 B

12345678910111213141516171819202122232425262728
  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. .box1{
  9. width: 500px;
  10. height: 500px;
  11. background-color: red;
  12. float: left;
  13. /* 透明度 0 完全透明 1 完全不透明 */
  14. /* 注意:透明会影响子元素的透明度 */
  15. opacity: 0.5;
  16. }
  17. .box2{
  18. width: 400px;
  19. height: 400px;
  20. background-color: blue;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="box1">hello world</div>
  26. <div class="box2"></div>
  27. </body>
  28. </html>