ASP.NET - tile an image

  • Thread starter Thread starter Guest
  • Start date Start date
Thanks Marcie,

but I don't want it to be over the whole background.

Joachim
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top