最新回答 / 慕慕2042493
310px就是题目要求的据左右列10px+右边列的300px;210px就是题目要求的左右列10px+左边列的200px;margin的像素是根据:上、右、下、左来理解的,参照案例左边要求的图样就可以理解了。
2015-07-08
最赞回答 / 梦灵花儿
.right { height: 500px; background-color: aquamarine; margin-left: 210px; position:absolute;/*脱离文档流,但是 display:inline-block,所以加个宽度 */ width:100%;/*这样就满足自适应了*/ }
2015-06-13
最新回答 / Fewq
.top{height:100px;background:#ccc} .main{height:500px;overflow:hidden;position: relative;} .left{width:20%;height:100%;float:left; background:blue; } .right{position:absolute;left:0;top:0; background:#9C9;margin-left:20%;height:100%;width: 80%;} .foot...
2015-06-09