CSS: 解决100% 高度失效 height 100% is not working when scrolling down page

原代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sample</title>

    <style>
        html, body{
            padding: 0;
            margin: 0;
        }
        .heightShower  {
            width:30%;
            height: 100%;
            color: #fff;
            background-color: #e0f;
        }
    </style>
</head>
<body>
    <div class="heightShower">
        This is the element
    </div>
</body>
</html>

 

解决方案是:

/* 100% height fix */
html, body{  
    height: 100%;
}

 

修改后代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sample</title>

    <style>
        /* 100% height fix */
        html, body{
            height: 100%;
            padding: 0;
            margin: 0;
        }
        .heightShower  {
            width:30%;
            height: 100%;
            color: #fff;
            background-color: #e0f;
        }
    </style>
</head>
<body>
    <div class="heightShower">
        This is the element
    </div>
</body>
</html>

 

Alternative

Or you could position .content as fixed and you'd have the same effect but with a different approach

.content {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
}

 

如果页面存在滚动条的话, 可以用  min-height:100% 代替 height:100%

when it is a  scrolling down page, Try using min-height:100% instead of height:100%.

 

结果如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sample</title>

    <style>
        /* 100% height fix */
        html, body{
            height: 100%;
            padding: 0;
            margin: 0;
        }
        .heightShower  {
            width:30%;
             /* 100% height fix for scrolling down page */
            min-height: 100%;
            color: #fff;
            background-color: #e0f;
        }
    </style>
</head>
<body>
    <div class="heightShower">
        This is the element
    </div>
</body>
</html>

 

 

原文/转自:  CSS: 100% 高度失效 height 100% is not working

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值