css设置body高度为浏览器的高度

2017-08-28  本文已影响0人  null_su

css设置body高度为浏览器的高度

Try setting the height of the html element to 100% as well.

html, 
body {
    height: 100%;
}

Body looks to its parent (HTML) for how to scale the dynamic property, so the HTML element needs to have it's height set as well.

However the content of body will probably need to change dynamically. Setting min-height to 100% will accomplish this goal.

html {
  height: 100%;
}
body {
  min-height: 100%;
}

from Stack Overflow

上一篇 下一篇

猜你喜欢

热点阅读