19_透明度.html 716 B

1234567891011121314151617181920212223242526
  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. /* rgb 3位 0-255 第四个值 0-1 透明度 0完全透明 1不透明*/
  12. /* rgba 透明度仅作用于颜色 */
  13. background-color: rgb(5, 5, 105,0.5);
  14. /* background-color: blue; */
  15. /* 设置透明度 0-1 0完全透明 1不透明*/
  16. /* 用作于整个标签 */
  17. /* opacity: 0.5; */
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="box">
  23. hello world
  24. </div>
  25. </body>
  26. </html>