公共HTML代码部分
<div class="content">
<div class="left"></div>
<div class="right"></div>
</div>
方法一:float来和BFC实现
<style>
.content {
border: 1px solid #000;
height: 800px;
padding: 20px;
}
.left {
width: 200px;
height: 100%;
background: red;
float: left;
}
.right {
height: 100%;
background: pink;
overflow: hidden;
}
</style>
方法二:absolute定位和margin值实现