HTML help
HTML help
- Started
- Last post
- 5 Responses
- ********
I need to know how to position a background image in the lower right-hand corner of a table without it repeating/tiling.
Thank u
=)
- ********0
Give the actual image a top and left border matching your background and make the dimensions match the table.
- stevegee0
use css.
give the cell a class
define the class as:.tablecell {background img: "url to image.gif";
repeat: no;
bottom right;}or something very similar to that.
- foreign0
css...
background-position: bottom right;
background-repeat: no-repeat;
- spiralstarez0
you can do it with one CSS declaration:
#item {
background: url(image.jpg) no-repeat bottom right;
}
- jevad0
^^^