<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="utf-8" />
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<style>
/*方式一 float+margin
.all{
height:500px
}
.left{
float:left;
width:200px;
background-color:red;
height:100%;
}
.right{
width:100%;
height:100%;
margin-left:200px;
background-color:yellow;
}
*/
/*方式二 float+overflow:hidden
.all{
height:500px
}
.left{
float:left;
width:200px;
background-color:red;
height:100%;
}
.right{
overflow:hidden;
height:100%;
background-color:yellow;
}
*/
/*方式三 flex */
.all{
height:500px;
display:flex;
}
.left{
width:200px;
background-color:red;
height:100%;
}
.right{
flex:1;
height:100%;
background-color:yellow;
display: flex; //为了后面的上下布局
flex-direction: column; //为了后面的上下布局
}
.top{
height: 100px;
background-color: blue;
}
.bottom{
flex: 1;
background-color: black;
}
/*方式四 绝对定位absolute
.all{
height:500px;
position: relative;
}
.left{
width:200px;
background-color:red;
height:100%;
}
.right{
position:absolute;
left: 200px;
top: 0px;
bottom: 0px;
right: 0px;
background-color: yellow;
}
.top{
height: 100px;
background-color: blue;
}
.bottom{
position: absolute;
background-color: black;
top: 100px;
bottom: 0px;
left: 0px;
right: 0px;
}*/
</style>
</head>
<body>
<div class="all">
<div class="left"></div>
<div class="right">
<div class="top">
</div>
<div class="bottom">
</div>
</div>
</div>
</body>
<script>
</script>
</html>
css左右布局+上下布局
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...