CSS:高度:100%对比底部:0

前端之家收集整理的这篇文章主要介绍了CSS:高度:100%对比底部:0前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下之间的本质区别是什么:
position: absolute;
top: 0;
height: 100%;

position: absolute;
top: 0;
bottom: 0;

解决方法

子元素的高度对于每个属性的确定方式不同:

底部:0 =>
child_height = parent_height – child_margin – child_border

身高:100%=>
child_height = parent_height

换句话说,height:100%将子项的内部高度设置为其父项的相同高度,而bottom:0将子项的外部高度设置为其父项的相同高度.

例如:http://jsfiddle.net/2N4QJ/1/

有关位置/尺寸的更多信息:
http://msdn.microsoft.com/en-us/library/ms530302(VS.85).aspx

原文链接:https://www.f2er.com/css/215304.html

猜你在找的CSS相关文章