12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #div1{
- width: 200px;
- height: 200px;
- background: #f00;
- /* 边框:粗细 solid实线|dashed虚线|dotted点 颜色 */
- /* transparent透明 */
- border:10px solid #000;
- /* 内边距 内容和边框之前的距离 */
- /* 上 右 下 左 */
- padding: 20px 30px 40px 50px;
- /* 外边距 边框意外的距离 ,一般用来调整两个元素之前的空隙 */
- /* margin:50px; */
- margin:50px 100px;
- }
- #div2{
- width: 200px;
- height: 200px;
- background: #00f;
- }
- </style>
- </head>
- <body>
- <div id="div1">
- 哈哈哈哈哈哈
- </div>
- <div id="div2">
- hehehehhehe
- </div>
-
-
- </body>
- </html>
|