经典面试题:一栏定宽,另一栏自适应,且等高

来源:互联网 发布:淘宝蜂蜜店铺推荐 编辑:程序博客网 时间:2024/06/05 13:23

html:

<div class="wrapper"><div class="left">你订单咋咋十号是好的多多多多多多多多多多多多多多多多多多多多多多多多多多多多</div><div class="right">苟富贵</div></div>
css:

.wrapper { overflow: hidden;}.left {     float: left;     width: 200px;     background-color: red;     margin-bottom: -3000px;     padding-bottom: 3000px;}.right {     margin-left: 210px;     background-color: green;     padding-bottom: 3000px;     margin-bottom: -3000px;}

margin和padding的值取决于内容的最大高度,比如高度无论如何都不会超过2000px,则margin-bottom:-2000px;padding-bottom:2000px

原创粉丝点击