123456789101112131415161718192021222324252627282930313233343536 |
- <!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>
- /* 标签选择器 */
- /* 标签选择器 根据标签名获取html标签 */
- /* div{
- color: red;
- } */
- /* 类选择器 */
- /* 根据类名获取html标签 类名允许重复*/
- .box1{
- color: red;
- }
- .box2{
- color: blue;
- }
- /* ID选择器 */
- /* 根据ID获取html标签 ID不允许重复 */
- #div1{
- color: green;
- }
- </style>
- </head>
- <body>
- <div class="box1">hello world</div>
- <div class="box2">你好世界</div>
- <div class="box2" id="div1">love coding</div>
- <!-- ID不允许重复 -->
- <!-- <div id="div1">hello</div> -->
- </body>
- </html>
|