[CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:53:02Z http://stackoverflow.com/feeds/question/228102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov 1 [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Steve 2008-10-23T00:55:26Z 2008-10-23T03:06:47Z <pre><code>&lt;div&gt; &lt;span&gt;left&lt;/span&gt; &lt;span&gt;right&lt;/span&gt; &lt;!-- new line break, so no more content on that line --&gt; &lt;table&gt; ... &lt;/table&gt; &lt;/div&gt; </code></pre> <p>How can I position those spans (they can be changed to any element) so that depending on how big the table is (not defined anywhere, and shouldn't be) the spans are positioned just on top of the left side of the table and the right side of the table.</p> <p>Example:</p> <pre> a b table0 table1 table2 </pre> <p>(where a is the left span, and b is the right span)</p> <p>P.S. You can change anything bar inner table html.</p> http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228122#228122 1 Answer by Ramesh for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Ramesh 2008-10-23T01:01:23Z 2008-10-23T01:01:23Z <p>if you have divs instead of span, try float:left for span a and float:right for span b</p> http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228126#228126 1 Answer by Rob Allen for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Rob Allen 2008-10-23T01:02:32Z 2008-10-23T01:02:32Z <pre><code>&lt;style type="text/css"&gt; #wrapper, #top, #tableArea { width: 100%; padding: 10px; margin: 0px auto; } #top { padding: 0px; } #leftBox, #rightBox { margin: 0px; float: left; display: inline; clear: none; } #rightBox { float: right; } &lt;/style&gt; &lt;div id="wrapper"&gt; &lt;div id="top"&gt; &lt;div id="leftBox"&gt;A&lt;/div&gt; &lt;div id="rightBox"&gt;b&lt;&lt;/div&gt; &lt;/div&gt; &lt;div id="tableArea"&gt; &lt;table&gt; ... &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228133#228133 0 Answer by Steve for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Steve 2008-10-23T01:05:57Z 2008-10-23T01:05:57Z <pre><code>&lt;div&gt; &lt;div style="float:left"&gt;a&lt;/div&gt;&lt;div style="float:right"&gt;b&lt;/div&gt; &lt;br style="clear: both"&gt; aaaaaaaaaaaaaaaaaaaaaaaaaaa&lt;br /&gt; aaaaaaaaaaaaaaaaaaaaaaaaaaa&lt;br /&gt; aaaaaaaaaaaaaaaaaaaaaaaaaaa&lt;br /&gt; &lt;/div&gt; </code></pre> <p>Doesn't place them relatively, nor does Rob Allen's answer, they put them at the far reaches of the browser not, within the table width.</p> http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228146#228146 1 Answer by Graphain for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Graphain 2008-10-23T01:09:47Z 2008-10-23T01:09:47Z <blockquote> <p>Doesn't place them relatively, nor does Rob Allen's answer, they put them at the far reaches of the browser not, within the table width.</p> </blockquote> <p>Well they are going to be bound by their container width and Rob's answer makes both the table and container width 100%.</p> <p>The only solution I can think of off hand is to put in a row in your table with a single column (spanning all columns) and in that row have your floated DIVs.</p> http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228151#228151 0 Answer by Steve for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Steve 2008-10-23T01:11:00Z 2008-10-23T01:11:00Z <p>@Graphain, you might have something there. And then just use fload: left and float right I assume?</p> http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228406#228406 0 Answer by Darryl Hein for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE? Darryl Hein 2008-10-23T03:06:47Z 2008-10-23T03:06:47Z <p>I can't think of anyway, except to set the width of the table to something. In my case I choose 100%, which stretches to the width of the rapper at 50em:</p> <pre><code>&lt;style type="text/css"&gt; #wrapper { width: 1%; min-width:50em; padding: 10px; } #mainTable { width:100%; } #leftBox { float: left; } #rightBox { float: right; } &lt;/style&gt; &lt;div id="wrapper"&gt; &lt;div id="leftBox"&gt;A&lt;/div&gt; &lt;div id="rightBox"&gt;b&lt;/div&gt; &lt;br style="clear: both" /&gt; some text some text some text some text some text &lt;br /&gt; some text some text some text some text some text &lt;br /&gt; some text some text some text some text some text &lt;table id="mainTable" border="1"&gt;&lt;tr&gt;&lt;td&gt;test&lt;/td&gt;&lt;td&gt;test 2&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; </code></pre>