1234567891011121314151617181920212223242526272829 |
- <!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>
- div{
- /* 宽度 */
- width: 100px;
- /* 高度 */
- height: 100px;
- /* 背景色 */
- background-color: red;
- /* 外边距 让边框外面的标签距离当前标签的距离*/
- margin:10px;
- /* 边框 第一个值表示边框粗细 第二个值边框样式(solid 实线) 第三个值边框颜色 每个值之间用空格连接*/
- border: 1px solid black;
- /* 内边距 内部内容与边框的距离*/
- padding: 10px;
- }
- </style>
- </head>
- <body>
- <div>hello</div>
- <div>world</div>
- </body>
- </html>
|