Jan 30, 2004 #1 Screamsid Programmer Joined May 14, 2003 Messages 20 Location 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 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
Jan 30, 2004 #2 woja Programmer Joined Jan 5, 2004 Messages 438 Location GB I'd use CSS: Code: td { background-attachment: fixed; background-position: top left; background-repeat: no-repeat; } [tt]________________________________________________________________ Roger Life is a game of cards in which the deck contains only jokers.[/tt] Upvote 0 Downvote
I'd use CSS: Code: td { background-attachment: fixed; background-position: top left; background-repeat: no-repeat; } [tt]________________________________________________________________ Roger Life is a game of cards in which the deck contains only jokers.[/tt]
Feb 2, 2004 Thread starter #3 Screamsid Programmer Joined May 14, 2003 Messages 20 Location GB thank you!! Upvote 0 Downvote