123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <!--
- link 用于引入外部文件
- rel 关系
- stylesheet 样式表
- href
- -->
- <!-- 3.外部样式表 -->
- <link rel="stylesheet" href="./1.css">
- <!-- 2.内部样式表 -->
- <style>
- div {
- width: 200px;
- height: 200px;
- background: #00f;
- }
- </style>
- </head>
- <body>
- <!--
- 优先级:
- 行内 > 内部 > 外部
- -->
- <!-- 1.行内样式/内联样式 -->
- <!-- <div style="width: 200px;height: 200px;background: #f00;"></div> -->
- <div></div>
- </body>
- </html>
|