HTML help please
HTML help please
- Started
- Last post
- 4 Responses
- toqueboy
what are all the methods of getting an image placed bottom right on a web page?
the method i'm using right now is definitely not the cleanest.
thanks
- trebor0
one way to do it:
picture
- trebor0
sorry. i wrote some html... im hungower...
Use a table thats 100% high and 100% width. Then put the picture in a td and align it right, valign=bottom
- jevad0
use CSS mate:
in the body tags:
background-image: url(yourimage.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;See it in action here:
- toqueboy0
thanks...those are the techniques i've been using.