i want my background image stretch or in tiles..
can somebody pls help me?...
how can i do this?

Recommended Answers

All 3 Replies

this is the body properties, you can use repeat to make a tile image
Syntax: background-repeat: <value>
Possible Values: repeat | repeat-x | repeat-y | no-repeat
Initial Value: repeat

The background-repeat property determines how a specified background image is repeated. The repeat-x value will repeat the image horizontally while the repeat-y value will repeat the image vertically.

For example:

BODY { background: white url(candybar.gif);
background-repeat: repeat-x }
///
credit (http://htmlhelp.com)\

hope this help

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.