-1
私の質問はCSSの "背景画像"についてです。 「背景画像」をフルスクリーンで追加するにはどうしたらいいですか?私は "幅:100%"を使用しましたが、動作しません。私はフルスクリーンで背景画像を表示したい
私の質問はCSSの "背景画像"についてです。 「背景画像」をフルスクリーンで追加するにはどうしたらいいですか?私は "幅:100%"を使用しましたが、動作しません。私はフルスクリーンで背景画像を表示したい
html,body{
height: 100%;
}
body{
background-image:url(http://www.cutestpaw.com/wp-content/uploads/2016/02/s-Yoshi-The-Seal-Kitteh.jpg);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
body {
background: url(http://i.imgur.com/aZO5Kolb.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-size: 100% 100%;
}
html {
height: 100%
}
'背景-size'プロパティ? – kukkuz