Click to See Complete Forum and Search --> : Inserting an image at a specific location...


Squibbles
07-28-2003, 06:01 PM
For instance, if I wanted to add an image to the bottom right corner of my web page, how would I go about doing this?

Thanks.

pyro
07-28-2003, 07:01 PM
How abouts <img src="your.png" alt="" style="position:absolute; right: 0px; bottom: 0px;">

PeOfEo
07-28-2003, 07:54 PM
You can also do your whole layout in a similar way to how pyro is positioning an image

Squibbles
07-28-2003, 09:22 PM
Hi!
Thanks alot!

I was wondering what 'alt' is for?

pyro
07-28-2003, 09:29 PM
alt is to display alternate text for the image. This is not an optional attribute, and should be used to display descriptive text for browsers that do not support images (screen readers, etc...)

PeOfEo
07-28-2003, 10:00 PM
It also servers as a tooltip type of deal for people with graphical browers. Sort of like the link 'title' tag.

pyro
07-28-2003, 10:02 PM
Originally posted by PeOfEo
It also servers as a tooltip type of deal for people with graphical browers. Sort of like the link 'title' tag. Only in IE... In browsers which correctly implement it, it will not show up as a tooltip. If you want that, use title...

PeOfEo
07-28-2003, 10:04 PM
I thought for sure opera did it too... huh. Ill go look real fast......... wow Ill be darned that is an ie only thing, I never really noticed that.