兩欄布局
左側(cè)定寬,右側(cè)自適應(yīng)
.left {
? ? width: 200px;
? ? height: 600px;
? ? background: red;
? ? float: left;
? ? text-align: center;
? ? line-height: 600px;
? ? color: #fff;
}
.right {
? ? margin-left: 210px;
? ? height: 600px;
? ? background: yellow;
? ? text-align: center;
? ? line-height: 600px;
}
三欄布局
第一種 浮動(dòng)
當(dāng)寬度小于左右寬度之和時(shí)右側(cè)欄會(huì)掉下去
效果
第二種 flex
不限定middle高度會(huì)隨著right的高度走