2017-07-12 15 views
0

Iは、ブートストラップを使用してsite for my sonを作り、のcustom.cssを加えました。背景カバーとして画像を使用しようとしましたが、表示されません。これをどうすれば解決できますか? This is custom.css表紙画像(ブートストラップ3)

body { 
 
\t color: #036; 
 
    font-family: Georgia, Times, serif; 
 
    font-size: 2rem; 
 
    background: url(images/field-bg.jpg) no-repeat center center fixed; 
 
    -webkit-background-size: cover; 
 
    -moz-background-size: cover; 
 
    -o-background-size: cover; 
 
    background-size: cover; 
 
} 
 
.container { 
 
background-color: #fff; 
 
width: 90%; 
 
}

答えて

0

background: url(../images/field-bg.jpg) no-repeat center center fixed; 
+0

を認識していませんでした、ありがとうどうもありがとうございました – mlegg

0

CSSのあなたのイメージへのパスが間違っています。イメージの前に../を追加すると、それは機能します(これは1つ上のレベルになることを意味します)。 CSS非常に便利です、ここでパスについての詳細:ところでhttps://css-tricks.com/quick-reminder-about-file-paths/

を、あなたは、バックグラウンド・サイズは、ベンダープレフィックスを必要としません。あなたはここに接頭辞する必要があるかどうかをチェックすることができます:http://shouldiprefix.com/

+0

background: url(images/field-bg.jpg) no-repeat center center fixed; 

を置き換える私はその – mlegg

関連する問題