CSS "valign" Positioning - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:26:03Z http://stackoverflow.com/feeds/question/229153 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/229153/css-valign-positioning 0 CSS "valign" Positioning Steve 2008-10-23T09:54:16Z 2008-10-23T10:32:43Z <pre><code>&lt;div&gt; &lt;h1&gt;Title&lt;/h1&gt; &lt;table&gt; ... &lt;/table&gt; &lt;/div&gt; </code></pre> <p>Now, the</p> <pre><code>&lt;h1&gt; </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 -1 Answer by Darryl Hein for CSS "valign" Positioning Darryl Hein 2008-10-23T09:55:44Z 2008-10-23T09:55:44Z <p>Do you have a height on the div?</p> http://stackoverflow.com/questions/229153/css-valign-positioning/229160#229160 -1 Answer by Steve for CSS "valign" Positioning Steve 2008-10-23T09:56:39Z 2008-10-23T09:56:39Z <p>Yes, 300px.</p> http://stackoverflow.com/questions/229153/css-valign-positioning/229184#229184 0 Answer by Darryl Hein for CSS "valign" Positioning Darryl Hein 2008-10-23T10:03:29Z 2008-10-23T10:03:29Z <p>What about this:</p> <pre><code>&lt;style type="text/css"&gt; #container { position: absolute; margin: 0; height:300px; border:1px solid #000; } #container h1 { margin:0; } #tableContainer { position: absolute; bottom:0; } &lt;/style&gt; &lt;div id="container"&gt; &lt;h1&gt;Title&lt;/h1&gt; &lt;div id="tableContainer"&gt; &lt;table id="tableLayout"&gt; &lt;tr&gt;&lt;td&gt;...&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; </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 -1 Answer by Steve for CSS "valign" Positioning Steve 2008-10-23T10:07:44Z 2008-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 -1 Answer by Darryl Hein for CSS "valign" Positioning Darryl Hein 2008-10-23T10:12:05Z 2008-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#229215 2 Answer by Remy Sharp for CSS "valign" Positioning Remy Sharp 2008-10-23T10:14:23Z 2008-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#229223 1 Answer by Darryl Hein for CSS "valign" Positioning Darryl Hein 2008-10-23T10:16:44Z 2008-10-23T10:16:44Z <p>Here is what Remy Sharp suggested:</p> <pre><code>&lt;style type="text/css" media="screen"&gt; #container { position: relative; margin: 0; height:300px; border:1px solid #000; } #container h1 { margin:0; } #tableLayout { position: absolute; bottom:0; border: 1px solid #c00; } &lt;/style&gt; &lt;div id="container"&gt; &lt;h1&gt;Title&lt;/h1&gt; &lt;table id="tableLayout"&gt; &lt;tr&gt;&lt;td&gt;example cell&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </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 -1 Answer by Steve for CSS "valign" Positioning Steve 2008-10-23T10:22:09Z 2008-10-23T10:22:09Z <p>Cheers, it worked! :)</p>