Below CSS code will repeat background image only vertically-
repeat-y CSS background image property will repeat a background image only vertically.
<style>
body
{
background-image:url('../images/verticle_bar.png');
background-repeat:repeat-y;
}
</style>