1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!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>
- .box {
- overflow: hidden;
- }
- #container {
- width: 500px;
- height: 500px;
- background: #f00;
- float: left;
- /* margin-top: 50px;
- margin-left: 30px;
- margin-bottom: 50px;
- margin-right: 10px; */
- margin: 10px 30px 50px 100px;
- /*
- 外边距 margin
- 一个值 上下左右
- 两个值 上下 左右
- 三个值 上 左右 下
- 四个值 上 右 下 左
-
- */
- }
- .main1 {
- width: 200px;
- height: 200px;
- background: #ff0;
- }
- .main2 {
- width: 200px;
- height: 200px;
- background: #f0f;
- float: left;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div id="container"></div>
- <div class="main2"></div>
- </div>
- <div class="main1"></div>
- </body>
- </html>
|