-4
は、これらの3つのプロパティは、速記で指定できます。背景速記
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Iドン; tはそれがインライン行うのように、カラー/ URLを指定します。
は、これらの3つのプロパティは、速記で指定できます。背景速記
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Iドン; tはそれがインライン行うのように、カラー/ URLを指定します。
私はいつもバックグラウンドを見つけていました。
Have you read the W3C guide、これは素晴らしいことではありませんが、出発点です。
も参照してくださいMDN:
https://developer.mozilla.org/en/docs/Web/CSS/background
引数(とinital値)の順序を述べている:
のでbackground-image: none background-position: 0% 0% background-size: auto auto background-repeat: repeat background-origin: padding-box background-clip: border-box background-attachment: scroll background-color: transparent
。あなたは持っています:
だから、順序でそれらをリスト:
background: center/no-repeat cover;
コンパイラがどのあるかを知るためにスラッシュが重要です!(上記のW3CまたはMDNリンクをお読みください)
[MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/background)インターネット検索をお試しください。 – hungerstar
@Martin:W3SchoolsがW3Cではないので、それは素晴らしいことではありません。実際のW3C仕様は、技術的に正確であるという点ではかなり優れています。 – BoltClock
可能な重複:http://stackoverflow.com/questions/17093252/how-to-include-the-background-cover-value-in-the-shorthand-background-property – Ricky