标签:支持 www. name aot https 多少 lin position 块元素
题目:span标签的width和height分别为多少?
A. width = 0px,height = 0px
B. width = 400px,height = 200px
C. width = 100px,height = 50px
D. width = 0px,height = 200px
<div style="width: 400px;height: 200px;">
<span style="float:left;width: auto;height: 100%;">
<i style="position: absolute;float: left; width: 100px;height: 50px;">
hello
</i>
</span>
</div>
效果:
div正常宽高
span{width:0;height:200px}
i{width:100px;height:50px}
height:100%
即是200px。i中绝对定位,脱离文档流,不占父级空间,所以span的width:0;
height:100%;
也就是继承了父元素div的高度200px。i设置了postion
,脱离了文档流,并不影响父元素,所以span的width:0px;
一个例题:浮动引起元素变成行内块元素-display:inline-block
标签:支持 www. name aot https 多少 lin position 块元素
原文地址:https://www.cnblogs.com/cui-ting/p/9859384.html