A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 月亮是我掰弯的 于 2017-2-28 15:44 编辑

1. 兼容性差异
height:100% IE6+ √
height:inherit IE8+ √
2. 大多数情况作用是一样的
除去兼容性,大多数情况下,两者作用是一样的,甚至都很难想出不一样的理由。
① 父容器height: auto,无论height:100%或者height:inherit表现都是auto.
② 父容器定高height: 100px,无论height:100%或者height:inherit表现都是100px高.
难道没有差异吗?难道没有使用height:inherit的理由吗?当然有,记住,江湖上所发生的一切事情,都绝非偶然!
3. 绝对定位大不同
当子元素为绝对定位元素,同时,父容器的position值为static的时候,呵呵呵,height:100%和height:inherit的差异就可以明显体现出来了!

CSS如下:
.outer {    display: inline-block;    height: 200px; width: 40%;    border: 5px solid #cd0000;}.height-100 {    position: absolute;    height: 100%; width: 200px;    background-color: #beceeb;}.height-inherit {    position: absolute;    height: inherit; width: 200px;    background-color: #beceeb;}


HTML如下:
<div class="outer"><div class="height-100"></div></div><div class="outer"><div class="height-inherit"></div></div>



结果,height:100%的冲破云霄,哦,不对,是深入地域地狱

而height:inherit却完美高度自适应没有定位特性的父级元素

对绝对定位有所了解的应该都知道原因,我就不解释了。
总之,这里,height:inherit的强大好用可见一斑。回头,容器高度变化了,里面的绝对定位元素依然高度自适应。这是很赞的特性,因为如果页面很复杂,避免使用position: relative会让你少去很多z-index混乱层级覆盖的麻烦。


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马