| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!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>
- /* 方法1:抽离单独的公共样式 */
- /* .box {
- width: 200px;
- height: 200px;
- }
- .box1 {
- background-color: red;
- }
- .box2 {
- background-color: blue;
- } */
- /* 方法2:同时控制多个标签 */
- /* 多个类名之间用逗号隔开 表示分为同一组 可以同时控制多个标签样式 */
- .box1,.box2{
- width: 200px;
- height: 200px;
- }
- .box1{
- background-color: red;
- }
- .box2{
- background-color: blue;
- }
-
- </style>
- </head>
- <body>
- <!-- 一个标签可以起多个类名 -->
- <!-- <div class="box1 box"></div>
- <div class="box2 box"></div> -->
- <div class="box1"></div>
- <div class="box2"></div>
- </body>
- </html>
|