2013.10.10 / 更新日:2013.10.10
背景画像の並び方指定 [background-repeat]
background-repeat:並び方
[並び方]
repeat 繰り返し表示
repeat-x 横方向に繰り返し
repeat-y 縦方向に繰り返し
no-repeat 繰り返さない
body{
background-repeat:repeat;
}
h1{
background-repeat:repeat-x;
}
h2{
background-repeat:repeat-y;
}
h3{
background-repeat:no-repeat;
}