美文网首页
左边固定,右边自适应

左边固定,右边自适应

作者: dayindayout | 来源:发表于2018-02-28 10:13 被阅读0次

left:width:100px;height:100px;background:#5A6A94;

right:height:100px; background: #BE4F4F;

1.浮动布局

left:float:left;

right:margin-left:100px;

2.overflow:hidden;(很奇怪,对float元素有用,对absolute就没用)

left:float:left;

right:overflow:hidden;

3.flex布局:

父容器:display:flex;

right:flex:1;

4.绝对定位

left:position:absolute;left:0;

right:position:absolue;left:100px;width:100%;

相关文章

网友评论

      本文标题:左边固定,右边自适应

      本文链接:https://www.haomeiwen.com/subject/rhazzxtx.html