HTML Table Question

Can I denote where objects appear vertically in a table? I know that with the “align” command, I can specify where horizontally the object will appear; is there a vertical alternative?

At the moment, I have a table with two cells side by side. The right cell’s height varies according to the amount of text, thus, depending on the text amount, it may extend both cell’s vertical height. This messes up my left cell which contains an image, causing the image to be centered in the now vertically extended cell. Ideally, I’d like the image be located at the top of the cell constantly. Is there a way to do this? Thanks!

Yeah you got your “align” which can be either LEFT, RIGHT or CENTER and your “valign” which is TOP, MIDDLE or BOTTOM.

Seems simple enough, many thanks.

Don’t rely on that, though. In some circumstances vertical aligning refuses to work as you might expect.

It pretty much doesn’t work at all with CSS.

I imagine I’d have to be using CSS on my page for that to make a difference, right? Unless there’s some other form of CSS I’m unfamiliar with. Thanks for the heads-up though.

Sorry :slight_smile: The CSS remark was an aside. (I should’ve put it in brackets, I suppose)

My warning still stands on HTML’s vertical align, but for most simple uses it will probably work fine.