Hi,
Is there some way to have my image on a HTML page align to the top left corner of the page (without the invisible margin) without using CSS -margins?
Thank you,
Donny
Hi,
Is there some way to have my image on a HTML page align to the top left corner of the page (without the invisible margin) without using CSS -margins?
Thank you,
Donny
by setting background-image to the body tag and background-position: top left;
<div align=left> the image </div>
You mean that? or
use tables with valign=top align=left
Fredda means you would apply a style to the body, in your style sheet. The background image would be the image you want in the upper left corner, and a position of top left.
I’m a newbie at CSS, but I believe it would be -
body {
background: url(image.jpg) top left no-repeat;
}