Using <div> to place a picture across a cell border

F

Fokke Nauta

Hi all,

I have a news letter, created by a table with cells. There is some text and
pictures in it. One picture, now placed in the top cell, I want to place
partly over the cell border, so that the picture lies over the top cell and
the cell below. Is this possible anyway?
You can find my news letter here: www.pc3.nl/test/nieuwsbrief.htm. When you
look into the www.pc3.nl/test directory, you'll see a picture as well. This
is not used but shows how I want the picture to be placed.

I doubt if it can be done, but one never knows ...

Many thanks in advance for your help.
With best regards,
Fokke Nauta
 
J

Jukka K. Korpela

I have a news letter, created by a table with cells. There is some text and
pictures in it. One picture, now placed in the top cell, I want to place
partly over the cell border, so that the picture lies over the top cell and
the cell below. Is this possible anyway?

Yes, and it’s rather easy. You just use relative positioning, which
means that an element is displaced from the position it would otherwise
occupy, by the amount you specify using the top, right, bottom, or left
properties. Example:

img {
position: relative;
top: 45px;
}

This would displace _every_ image, so it’s not suitable, but you can add
an id attribute to the <img> element, say id="photo", and use the
selector #photo instead of the selector img.
 
F

Fokke Nauta

Jukka K. Korpela said:
Yes, and it's rather easy. You just use relative positioning, which means
that an element is displaced from the position it would otherwise occupy,
by the amount you specify using the top, right, bottom, or left
properties. Example:

img {
position: relative;
top: 45px;
}

This would displace _every_ image, so it's not suitable, but you can add
an id attribute to the <img> element, say id="photo", and use the selector
#photo instead of the selector img.

Thanks very much, Jukka.
I would never believe it was that simple!
Great help.

Best regards,
Fokke
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,525
Members
44,997
Latest member
mileyka

Latest Threads

Top