<div>
<h1>Title</h1>
<table>
...
</table>
</div>
Now, the
<h1>
has a margin: 0; so it is at the top of the div.
However I'd like the table to be placed at the bottom of the div, eg. valign="bottom" but for the whole table.
|
|
Now, the
has a margin: 0; so it is at the top of the div. However I'd like the table to be placed at the bottom of the div, eg. valign="bottom" but for the whole table.
|
|||
|
|
|
|
Try this: http://jsbin.com/emoce Though it's similar to Darryl's solution. Except I'm not using position:absolute on the wrapping div, but rather position: relative to make the table's position absolute to that. |
||
|
|
|
|
Cheers, it worked! :) |
||
|
|
|
|
Here is what Remy Sharp suggested:
Looks like it works! I posted it here so it will always be here. |
||
|
|
|
|
Can you give more details of what your page looks like and other formatting? |
||
|
|
|
|
Sorry the divs float around. :( Any other ideas? |
||
|
|
|
|
What about this:
The only problem is that both the container div and the tableContainer divs need to be absolute positioned. Not sure if this will work for your layout. |
||
|
|
|
|
Yes, 300px. |
||
|
|
|
|
Do you have a height on the div? |
||
|
|