Repeating Background image only Vertically.

vishalneeraj-24503
Posted by vishalneeraj-24503 under CSS 3 category on | Points: 40 | Views : 854
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>

Comments or Responses

Login to post response