| 12345678910111213141516171819202122232425 |
- <!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 .box2{
- color: red;
- }
- body .box .box3{
- color: blue;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="box2">hello</div>
- <div class="box3">你好</div>
- </div>
- <div class="box2"> world</div>
- </body>
- </html>
|