ASP.NET - tile an image

  • Thread starter Thread starter Guest
  • Start date Start date
Use a css class and apply the class to a div tag with your image inside of
it

e.g

..tileImage
{
background-image: url("image.jpg");
}

<div class="tileImage" width="200" height="200">

</div>

Something like this should work. Search the net for additional CSS
properties that you can apply to this class to get a tiling effect. This
should give you a start
 
Back
Top