| 12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- /* rgb格式的颜色 红色 绿色 蓝色 0-255取值 */
- /* color: rgb(255,0,0); */
- /* rgba格式的颜色 红色 绿色 蓝色 透明度 0-1取值 */
- color: rgba(255,0,0,0.5);
- }
- </style>
- </head>
- <body>
- <div class="box">hello world</div>
- </body>
- </html>
|