Repeating Background image only Horizontally.

vishalneeraj-24503
Posted by vishalneeraj-24503 under CSS 3 category on | Points: 40 | Views : 982
Below CSS code will repeat background image only Horizontally.
repeat-x CSS background image property will repeat a background image only Horizontally.
<style>
body
{
background-image:url('../images/horizontal_bar.png');
background-repeat:repeat-x;
}
</style>

Comments or Responses

Login to post response