线性梯度不是身体的全高

时间:2018-01-12 02:20:38

标签: css

我的线性渐变只会到达div的底部。

  

问题如何确保正文线性渐变达到页面的整个高度?

CODEPEN DEMO

enter image description here

CSS

body {
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    background: linear-gradient(to bottom right, #0087e0 50%, #004165 50%, #004165);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left top;
}

.header {
    background: #FFFFFF;
    width: 100%;
    height: 50px;
}

.wrapper {
    background: #F0F0F0;
    min-height: 600px;
}

@media (max-width: 968px) {
    .text-mobile {
        text-align: center !important;
    }
}

HTML

<div class="container">
    <div class="wrapper"></div>
</div>

1 个答案:

答案 0 :(得分:3)

您需要将htmlbody身高设置为100%;

html, body {
    height: 100%;
}