html <div> set
Posted: Wed Sep 05, 2007 2:21 am
I have an easy html structure.
The td elements size is variable, and the "top" <div> size too.
I would like set the "bottom" <div> on the <td> bottom ( that should be always there),
but if I set the vertical-align for bottom, the "top" <div> come bottom too.
I was tried the other expedient (position:absolute) but that was far from solution.
Can Somebody help me ?
Code: Select all
.....
<td>
<div id="top">
text content
</div>
<div id="bottom">
fix size menu
<div>
</td>
......I would like set the "bottom" <div> on the <td> bottom ( that should be always there),
but if I set the vertical-align for bottom, the "top" <div> come bottom too.
I was tried the other expedient (position:absolute) but that was far from solution.
Can Somebody help me ?