When I have more than one column, and I put an image in one column, if the adjacent columns are longer than the image, then the image floats vertically in the middle of its column. It does not align at the top of the column as I would expect. This is causing me problems on some pages that I don’t want to have to “cheat” around.
I tried giving the image and the enclosing column a custom class of .floattop and used this CSS, but it didn’t do anything:
<code
>.floattop {
position: relative;
top: 0px;
}
On the linked page, you can see the man’s portrait floating vertically. How do I make images foot to the top of their enclosing object?
thanks