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;
}
CSSbackground-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;
}
コメント