标签:分享 back center 布局 width yellow com img 图片
1.浮动布局
<div class="container">
<div class="left">left</div>
<div class="right">right</div>
<div class="center">center</div>
</div>
<style>
div{
min-height:200px;
}
.left{
width: 300px;
float: left;
background-color: red;
}
.center{
background-color: yellow;
}
.right{
width: 300px;
float: right;
background-color: blue;
}
</style>
效果:

标签:分享 back center 布局 width yellow com img 图片
原文地址:https://www.cnblogs.com/Fourteen-Y/p/9023383.html