1. 程式人生 > >常用css上下佈局-上邊高度固定,下邊高度自適應

常用css上下佈局-上邊高度固定,下邊高度自適應

 上下兩個盒子,上邊的固定,下面的自適應

<div class= "container">
    <div class="left"></div>
    <div class="right"></div>
</div>
 
<style>
.container{
    position: relative;
	width: 200px;
	height: 600px;
	border: 1px solid red;
}
.left{
    width:100%;
    height:200px;
	background: blue;
}
.right{
    position: absolute;
    width: 100%;
    top: 200px;
    bottom: 0;
	left: 0;
    background: yellow;
}
</style>