[新着] Webテンプレートを仮オープンしました
background-repeat は、背景画像の並び方を指定するプロパティです。
body要素にこのスタイルを設定すると、ページの背景画像の並び方を指定することができます。
body {
background-image: url(image/back.gif);
background-repeat: repeat-y;
}
| background-repeat | repeat-x … (横方向に並べる) |
|---|---|
| repeat-y … (縦方向に並べる) | |
| no-repeat … (1つだけ表示する) | |
| repeat … (敷き詰める)デフォルト |
■repeat-y(縦方向の並び)を指定する場合
<html>
<head>
<title>TAG index Webサイト</title>
<style type="text/css">
<!--
body {
background-color: #ffffff;
background-image: url(image/back.gif);
background-repeat: repeat-y;
color: #000000;
}
-->
</style>
</head>
<body>
・
・
・
</body>
</html>
▼これをブラウザで見ると次のように表示されます
■その他の使用例