[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.com2009-12-12T03:53:02Zhttp://stackoverflow.com/feeds/question/228102http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov1[CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Steve2008-10-23T00:55:26Z2008-10-23T03:06:47Z
<pre><code><div>
<span>left</span>
<span>right</span>
<!-- new line break, so no more content on that line -->
<table>
...
</table>
</div>
</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#2281221Answer by Ramesh for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Ramesh2008-10-23T01:01:23Z2008-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#2281261Answer by Rob Allen for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Rob Allen2008-10-23T01:02:32Z2008-10-23T01:02:32Z<pre><code><style type="text/css">
#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;
}
</style>
<div id="wrapper">
<div id="top">
<div id="leftBox">A</div>
<div id="rightBox">b<</div>
</div>
<div id="tableArea">
<table> ... </table>
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/228102/css-positioning-how-can-i-position-a-span-to-be-aligned-to-either-side-and-abov/228133#2281330Answer by Steve for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Steve2008-10-23T01:05:57Z2008-10-23T01:05:57Z<pre><code><div>
<div style="float:left">a</div><div style="float:right">b</div>
<br style="clear: both">
aaaaaaaaaaaaaaaaaaaaaaaaaaa<br />
aaaaaaaaaaaaaaaaaaaaaaaaaaa<br />
aaaaaaaaaaaaaaaaaaaaaaaaaaa<br />
</div>
</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#2281461Answer by Graphain for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Graphain2008-10-23T01:09:47Z2008-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#2281510Answer by Steve for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Steve2008-10-23T01:11:00Z2008-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#2284060Answer by Darryl Hein for [CSS Positioning] How can I position a SPAN to be aligned to either side and above a TABLE?Darryl Hein2008-10-23T03:06:47Z2008-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><style type="text/css">
#wrapper {
width: 1%;
min-width:50em;
padding: 10px;
}
#mainTable {
width:100%;
}
#leftBox {
float: left;
}
#rightBox {
float: right;
}
</style>
<div id="wrapper">
<div id="leftBox">A</div>
<div id="rightBox">b</div>
<br style="clear: both" />
some text some text some text some text some text <br />
some text some text some text some text some text <br />
some text some text some text some text some text
<table id="mainTable" border="1"><tr><td>test</td><td>test 2</td></tr></table>
</div>
</code></pre>