1、flex布局
-
- .container {
- display: flex;
- }
-
- .column {
- flex: 1;
- padding: 20px;
- }
-
- .column:first-child {
- background-color: #f2f2f2;
- }
-
- class="container">
- <div class="column">
- <p>This is the left column.p>
- div>
- <div class="column">
- <p>This is the right column.p>
- div>
- div>
- body>
- html>
2、float布局
- "width: 800px;height: 200px;">
- "float: left;background: red;width: 200px;height: 100%;">
- 左
-
- "background: blue;margin-left: 200px;height: 100%;padding-left: 10px;">
- 右
-
-
-
- "utf-8">
-
float -
- "width:800px;height:200px;">
- "float:left;background:red;width:200px;height:100%;">
- 左
-
- "float:right;background:blue;width:200px;height:100%;">
- 右
-
- "background:yellow;width:400px;margin-left: 200px;height:100%;">
- 中
-
-