body要素に background-repeat: repeat-y を指定すると、ページの左側に画像が並びます。
repeat-xは横 repeat全面 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>背景画像の繰り返し方を指定する</title>
<style type="text/css">
<!--
body { background-color: #FFC;
background-image: url(back016.gif);
background-repeat: repeat-y;
padding-left: 64px; }
-->
</style>
</head>
<body>
<h1>background-repeat</h1>
<p>body要素に background-repeat: repeat-y を指定すると、ページの左側に画像が並びます。</p>
</body>
</html>