Click to See Complete Forum and Search --> : placing the link beside table


Rxyz
12-06-2005, 02:02 PM
Have a table in my JSP.

beside the table have to place a link, i.e beside the last row of table.

how do I do this?

Thanks.

LiLcRaZyFuZzY
12-06-2005, 02:07 PM
sorry but you'll have to explain a bit more

Rxyz
12-06-2005, 02:29 PM
table
col1 col2
11 12
21 22 link(want it here not in table but beside table)

Thanks.

ShrineDesigns
12-06-2005, 02:40 PM
try this CSStable {
vertical-align: baseline; /* IE */
}
table + a {
vertical-align: bottom; /* MOZ */
}