最新回答 / 慕移动9181930
A选项标识符不能以数字开头;C选项标识符中不能包含%;D选项标识符中不能包含空格或者在页面内写个脚本也行。取标题长度,如果超过指定值,则substr一下,然后在后面 '...';
2016-01-17
这才是正确答案!
.top{background:gray;height:60px;}
.main{background:red;height:400px;position:relative;}
.left{background:blue;position:absolute;left:0;top:0;width:200px;height:400px;}
.right{background:green;height:400px;margin-left: 210px;}
.foot{background:orange;height:60px;}
.top{background:gray;height:60px;}
.main{background:red;height:400px;position:relative;}
.left{background:blue;position:absolute;left:0;top:0;width:200px;height:400px;}
.right{background:green;height:400px;margin-left: 210px;}
.foot{background:orange;height:60px;}
已采纳回答 / LEO陈帅华
.left{background:blue;position:absolute;left:0;top:0;width:200px;height:400px;}.right{background:green;height:400px;margin-left: 210px;}左侧使用绝对定位脱离父元素的文档流,右侧的div默认宽度为父元素的宽度,只需要设置左外边距为相应的数值即可。
2016-01-15
.top{height:100px;margin:0 aotu;background-color:gray}
.main{height:500px;background-color:red}
.left{height:100%; width:200px;background-color:Blue;}
.right{ height:100%;width:100%;background-color:green;float:left;margin-left:210px}
.foot{height:100px;background-color:orange;;width:100%}
.main{height:500px;background-color:red}
.left{height:100%; width:200px;background-color:Blue;}
.right{ height:100%;width:100%;background-color:green;float:left;margin-left:210px}
.foot{height:100px;background-color:orange;;width:100%}
已采纳回答 / 心很空_天很蓝
position:absolute;//绝对布局后元素脱离文档流,可以设置top right bottom left(property);margin是盒子的外边距为了不与leftDiv和rightDiv重合所以要设置leftDiv.width为margin-left,设置rightDiv.width为margin-right。么么哒!
2016-01-15
一开始一直没想通为什么,footer会跑到最上面去被浮动的遮盖住,后来终于明白了,浮动元素会对和父元素同级元素产生排版影响
<div class="main">
2222222222222222222222222222222222222222222222222222
<div class="left">1111111111111</div>
3333333333333333333333333333333333333333333333
</div>
<div class="footer">footer</div>
这样就能看出来为什么了。。
<div class="main">
2222222222222222222222222222222222222222222222222222
<div class="left">1111111111111</div>
3333333333333333333333333333333333333333333333
</div>
<div class="footer">footer</div>
这样就能看出来为什么了。。
最新回答 / 慕移动9181930
相当于选择已有节点保存起来之后赋值,这里目前只是在插入dom之前这么操作。谢谢你的支持,希望能关注后续课程,有任何意见建议也欢迎随时提出~:)
2016-01-14