repeat
repeat-x
repeat-y
no-repeat
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>background-repeatのキーワード</title>
<style type="text/css">
<!--
#test p { float: left; width: 6em; height: 6em;
font: bold 1.5em Verdana;
border: 1px solid black;
background-color: #FFC;
background-image: url(back019-1.gif); }
.p1 { background-repeat: repeat; }
.p2 { background-repeat: repeat-x; }
.p3 { background-repeat: repeat-y; }
.p4 { background-repeat: no-repeat; }
-->
</style>
</head>
<body>
<div id="test">
<p class="p1">repeat</p>
<p class="p2">repeat-x</p>
<p class="p3">repeat-y</p>
<p class="p4">no-repeat</p>
</div>
</body>
</html>