| 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: 200px;
- height: 200px;
- margin:100px auto;
- background-color: red;
- /* 用颜色控制透明度 */
- /* rgba(红,绿,蓝,透明度) 透明度 0-1 0 完全透明 1 完全不透明 */
- /* background-color: rgba(255, 0, 0,0.2); */
- /* opacity 透明度 0-1 0 完全透明 1 完全不透明 */
- opacity: 0.2;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <h1>透明度</h1>
- </div>
- </body>
- </html>
|