首页 > 代码库 > 双飞翼布局
双飞翼布局
描述:两边内容不变,中间内容变化
代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
margin: 0px;
padding:0px;
}
.content{
width: 100%;
height: 300px;
background-color: grey;
}
.center{
width: 100%;
height: 300px;
background-color: red;
float: left;
}
.child{
height: 100%;
margin-left: 100px;
margin-right: 200px;
}
.left{
width: 100px;
height: 100%;
background-color: blue;
float: left;
margin-left: -100%;
}
.right{
width: 200px;
height: 100%;
background-color: yellow;
float: left;
margin-left: -200px;
}
</style>
</head>
<body>
<div class="content">
<div class="center">
<div class="child">中间内容</div>
</div>
<div class="left">左边内容</div>
<div class="right">右边内容</div>
</div>
</body>
</html>
双飞翼布局
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。