所以我试图设置这个图像:jordandevelop.com/test/img/header.jpg
作为标题背景。我遇到的问题是它不会响应不同的屏幕分辨率。下面是我目前设计的CSS。
header {
width: 100%;
height: 1600px;
min-height: auto;
text-align: center;
color: #fff;
background-image: url(../img/header.jpg);
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
任何建议都会很棒。以下是该网站的链接:https://jordandevelop.com/test/
编辑:这是我目前的标题CSS。
header {
position: relative;
width: 100%;
min-height: auto;
text-align: center;
color: #fff;
background-repeat: no-repeat;
background-image: url(../img/header.jpg);
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
header .header-content {
position: relative;
width: 100%;
padding: 100px 15px;
text-align: center;
}
header .header-content .header-content-inner h1 {
margin-top: 0;
margin-bottom: 0;
text-transform: uppercase;
font-weight: 700;
}
header .header-content .header-content-inner hr {
margin: 30px auto;
}
header .header-content .header-content-inner p {
margin-bottom: 50px;
font-size: 16px;
font-weight: 300;
color: rgba(255,255,255,.7);
}
@media(min-width:768px) {
header {
min-height: 100%;
}
header .header-content {
position: absolute;
top: 50%;
padding: 0 50px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
header .header-content .header-content-inner {
margin-right: auto;
margin-left: auto;
max-width: 1000px;
}
header .header-content .header-content-inner p {
margin-right: auto;
margin-left: auto;
max-width: 80%;
font-size: 18px;
}
}
答案 0 :(得分:2)
以下代码应该有效:
CSS :(将以下内容添加到您的css代码中)
header{
background: url(/test/img/header.jpg);
background-size: cover;
}
或(这是响应,保留整个图像)
header{
background: url(/test/img/header.jpg);
background-size: 100% 100%;
}
希望它有所帮助,享受!