CSS "valign" Positioning - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T10:26:03Zhttp://stackoverflow.com/feeds/question/229153http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/229153/css-valign-positioning0CSS "valign" PositioningSteve2008-10-23T09:54:16Z2008-10-23T10:32:43Z
<pre><code><div>
<h1>Title</h1>
<table>
...
</table>
</div>
</code></pre>
<p>Now, the</p>
<pre><code><h1>
</code></pre>
<p>has a margin: 0;
so it is at the top of the div.</p>
<p>However I'd like the table to be placed at the bottom of the div, eg. valign="bottom" but for the whole table.</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229156#229156-1Answer by Darryl Hein for CSS "valign" PositioningDarryl Hein2008-10-23T09:55:44Z2008-10-23T09:55:44Z<p>Do you have a height on the div?</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229160#229160-1Answer by Steve for CSS "valign" PositioningSteve2008-10-23T09:56:39Z2008-10-23T09:56:39Z<p>Yes, 300px.</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229184#2291840Answer by Darryl Hein for CSS "valign" PositioningDarryl Hein2008-10-23T10:03:29Z2008-10-23T10:03:29Z<p>What about this:</p>
<pre><code><style type="text/css">
#container {
position: absolute;
margin: 0;
height:300px;
border:1px solid #000; }
#container h1 {
margin:0; }
#tableContainer {
position: absolute;
bottom:0; }
</style>
<div id="container">
<h1>Title</h1>
<div id="tableContainer">
<table id="tableLayout">
<tr><td>...</td></tr>
</table>
</div>
</div>
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229200#229200-1Answer by Steve for CSS "valign" PositioningSteve2008-10-23T10:07:44Z2008-10-23T10:07:44Z<p>Sorry the divs float around. :(</p>
<p>Any other ideas?</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229207#229207-1Answer by Darryl Hein for CSS "valign" PositioningDarryl Hein2008-10-23T10:12:05Z2008-10-23T10:12:05Z<p>Can you give more details of what your page looks like and other formatting?</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229215#2292152Answer by Remy Sharp for CSS "valign" PositioningRemy Sharp2008-10-23T10:14:23Z2008-10-23T10:14:23Z<p>Try this: <a href="http://jsbin.com/emoce" rel="nofollow">http://jsbin.com/emoce</a></p>
<p>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.</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229223#2292231Answer by Darryl Hein for CSS "valign" PositioningDarryl Hein2008-10-23T10:16:44Z2008-10-23T10:16:44Z<p>Here is what Remy Sharp suggested:</p>
<pre><code><style type="text/css" media="screen">
#container {
position: relative;
margin: 0;
height:300px;
border:1px solid #000;
}
#container h1 {
margin:0;
}
#tableLayout {
position: absolute;
bottom:0;
border: 1px solid #c00;
}
</style>
<div id="container">
<h1>Title</h1>
<table id="tableLayout">
<tr><td>example cell</td></tr>
</table>
</div>
</code></pre>
<p>Looks like it works!</p>
<p>I posted it here so it will always be here.</p>
http://stackoverflow.com/questions/229153/css-valign-positioning/229233#229233-1Answer by Steve for CSS "valign" PositioningSteve2008-10-23T10:22:09Z2008-10-23T10:22:09Z<p>Cheers, it worked! :)</p>