DIV高度自适应浏览器高度方法

*{
    margin: 0;
    padding: 0;
}
html, body{
    width: 100%;
    height: 100%;
}
div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
    background: #000000;
}

 

你可能感兴趣的:(CSS)