1234567891011121314151617181920212223242526 |
- <!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{
- width: 100px;
- height: 100px;
- /* rgb 3位 0-255 第四个值 0-1 透明度 0完全透明 1不透明*/
- /* rgba 透明度仅作用于颜色 */
- background-color: rgb(5, 5, 105,0.5);
- /* background-color: blue; */
- /* 设置透明度 0-1 0完全透明 1不透明*/
- /* 用作于整个标签 */
- /* opacity: 0.5; */
- }
- </style>
- </head>
- <body>
- <div class="box">
- hello world
- </div>
- </body>
- </html>
|