|
|
[2009/2/28] サイトを一部リニューアルしました
[2010/7/13] 楽-サーチをバージョンアップしました
[2010/9/13] 楽-サーチをバージョンアップしました
|
|
|
|
|
|
|
name
----------- |
job
----------- |
タケ |
consultant |
yaman |
engineer |
→作者プロフィール
|
|
|
|
|
|
- CSSちゃんねる > プロパティ一覧 > background-repeat
-
-
説明 |
背景画像の並べ方を指定します |
値 |
[no-repeat] = 背景画像を1つだけ表示 |
[repeat] = 背景画像を敷詰めに並べる |
[repeat-x] = 背景画像を水平方向に並べる |
[repeat-y] = 背景画像を垂直方向に並べる |
初期値 |
repeat |
継承 |
不可 |
-
-
[使用例] |
div.no-repeat{
background-image:URL(http://www.seo-ch.com/img/bk.gif);
background-repeat:no-repeat;
border:solid;
height:200px;
width:400px;
}
|
div.repeat{
background-image:URL(http://www.seo-ch.com/img/bk.gif);
background-repeat:repeat;
border:solid;
height:200px;
width:400px;
}
|
div.repeat-x{
background-image:URL(http://www.seo-ch.com/img/bk.gif);
background-repeat:repeat-x;
border:solid;
height:200px;
width:400px;
}
|
div.repert-y{
background-image:URL(http://www.seo-ch.com/img/bk.gif);
background-repeat:repeat-y;
border:solid;
height:400px;
width:400px;
}
|
|
|
|