background-repeat: ***;

ブラウザ
  • IE
  • Cr
  • Sf
  • Fx
  • O
プロパティ

background-repeat は、背景画像の並び方を指定するプロパティです。


div {
background-image: url(back.gif);
background-repeat: repeat-y;
}

プロパティ名 説明
background-repeat repeat 敷き詰める (初期値)
repeat-x 水平方向に並べる
repeat-y 垂直方向に並べる
no-repeat 1つだけ表示する

使用例


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>文書のタイトル</title>

<style type="text/css">

div {
width: 70%;
height: 200px;
margin-bottom: 1.5em;
background-color: #ffffff;
background-image: url(neko.gif);
color: #000000;
}

div.example1 { background-repeat: repeat; }
div.example2 { background-repeat: repeat-x; }
div.example3 { background-repeat: repeat-y; }
div.example4 { background-repeat: no-repeat; }

</style>

</head>
<body>

<div class="example1">敷き詰める</div>
<div class="example2">水平方向に並べる</div>
<div class="example3">垂直方向に並べる</div>
<div class="example4">1つだけ表示する</div>

</body>
</html>

表示例
敷き詰める
水平方向に並べる
垂直方向に並べる
1つだけ表示する

[背景画像] (この画像を背景にしています)