12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!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>
- #box1 {
- width: 200px;
- height: 200px;
- /* float: left; */
- /* display: inline-block; */
- background: #f00;
- }
- #box2 {
- width: 200px;
- height: 200px;
- float: left;
- /* display: inline-block; */
- background: #ff0;
- }
- #box3 {
- width: 200px;
- height: 200px;
- float: left;
- /* display: inline-block; */
- background: #f0f;
- }
- #box4 {
- width: 200px;
- height: 200px;
- background: #0f0;
- }
- </style>
- </head>
- <body>
- <!--
- 浮动:使元素在一行排列
- float 浮动
- left 左浮
- right 右浮
- 脱离文档流
- -->
- <div id="box1">1</div>
- <div id="box2">2</div>
- <div id="box3">3</div>
- <div id="box4">4</div>
- </body>
- </html>
|