24_rgb.html 514 B

12345678910111213141516171819
  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. /* rgb格式的颜色 红色 绿色 蓝色 0-255取值 */
  10. /* color: rgb(255,0,0); */
  11. /* rgba格式的颜色 红色 绿色 蓝色 透明度 0-1取值 */
  12. color: rgba(255,0,0,0.5);
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="box">hello world</div>
  18. </body>
  19. </html>