How to Repeat a Background image horizontally only in Asp.Net?

 Posted by vishalneeraj-24503 on 11/29/2013 | Category: ASP.NET Interview questions | Views: 2442 | Points: 40
Answer:

We can use background-repeat CSS property as below in the style tag:-

<style>

body
{
background-image:url('logo.jpeg');
background-repeat:repeat-x;
}
</style>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response