-2

所以我试图设置这个图像: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;
    }
}
4

1 回答 1

2

以下代码应该可以工作:

CSS:(将以下内容添加到您的 CSS 代码中)

header{
   background: url(/test/img/header.jpg);
   background-size: cover;
}

或者(这个是响应式的,保留整个图像)

header{
   background: url(/test/img/header.jpg);
   background-size: 100% 100%;
}

希望对您有所帮助,享受!

于 2016-04-02T02:35:58.267 回答