css 左边固定宽度,右边自动填充的布局,不用flex

<div class="left"></div>

<div class="right"></div>

<style>

.left{

position: relative;float: left;width:200px;

}

.right{

position: relative;overflow: hidden;

}

</style>

猜你喜欢

转载自blog.csdn.net/yezitoo/article/details/82497604