Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table cells background image

Status
Not open for further replies.

Screamsid

Programmer
May 14, 2003
20
GB
I was wondering if it is possible to stop a cell stop a image being tiled when the cell is stretched? if so what would be the code to do this.

Cheers in advance :)
 
I'd use CSS:
Code:
   td {
      background-attachment: fixed;
      background-position: top left;
      background-repeat: no-repeat;
   }

[tt]________________________________________________________________
[pc2]Roger
Life is a game of cards in which the deck contains only jokers.[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top