23_透明.html 907 B

12345678910111213141516171819202122232425262728293031323334353637
  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. .box3{
  23. width: 300px;
  24. height: 300px;
  25. background-color: rgba(0,255,0,0.1);
  26. /* opacity: 0.5; */
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <!-- <div class="box1">hello world</div>
  32. <div class="box2"></div> -->
  33. <div class="box3">hello world</div>
  34. </body>
  35. </html>