12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!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>
- /* * 通配符 选中所有元素 */
- *{
- margin:0;
- padding: 0;
- }
- #div1{
- width: 200px;
- height: 200px;
- background: #f00;
- /* 内边距 内容和边框之前的距离 */
- /* padding:20px; */
- /* 上右下左 */
- /* padding:10px 20px 30px 40px; */
- /* 上下 左右 */
- /* padding: 20px 40px; */
- /* 边框: 粗细 实线solid |虚线 dashed 颜色*/
- /* border:5px solid black; */
- /* 外边距 边框以外的距离*/
- /* margin:100px; */
- /* margin:10px 20px; */
- /* margin:10px 20px 30px 40px ; */
- /* left right top bottom 可以单独设置上下左右 */
- /* padding-top:30px; */
- /* margin-top:40px; */
-
- }
-
- </style>
- </head>
- <body>
- <div id="div1">
- 哈哈哈哈
- </div>
- <ul>
- <li>111</li>
- <li>111</li>
- <li>111</li>
-
- </ul>
- <p>dhjshjfdgshfgj</p>
-
- </body>
- </html>
|