【发布时间】:2017-05-08 22:41:20
【问题描述】:
【问题讨论】:
-
只需添加高度:100%;宽度:100%;作为风格
【问题讨论】:
如果你想固定背景,你可以这样做。
body {
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
width: 100%;
height: 100%;
}
【讨论】:
background-size: cover 可能就是您要找的。p>
【讨论】:
.class{
background-image: url('img/background.jpg') no-repeat;
background-attachment: fixed;
background-size:cover;
height: 100vh;
}
【讨论】: