inline-block on span - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T01:29:23Zhttp://stackoverflow.com/feeds/question/34581http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34581/inline-block-on-span1inline-block on spanrams2008-08-29T16:13:11Z2008-08-29T17:50:18Z
<p>I expected the two span tags in the following sample to display next to each other, instead they display one below the other. If I set the width of the class span.right to 49% they display next to each other. I am not able to figure out why the right span is pushed down like the right span has some invisible padding/margin which makes it take more than 50%. I am trying to get this done without using html tables. Any ideas?
TIA</p>
<pre><code>
Test Page
* {
margin: 0;
}
html,body{
margin:0;
padding:0;
height:100%;
width:100%;
border:none;
}
div.header{
width:100%;
height:80px;
vertical-align:top;
}
span.left {
height:80px;
width:50%;
display:inline-block;
background-color:pink;
}
span.right {
vertical-align:top;
display:inline-block;
text-align:right;
height:80px;
width:50%;
background-color:red;
}
Left Span 50% width
Right Span 50% width
</code></pre>
http://stackoverflow.com/questions/34581/inline-block-on-span/34587#345871Answer by Teifion for inline-block on spanTeifion2008-08-29T16:14:25Z2008-08-29T16:14:25Z<pre><code>float: left;
</code></pre>
<p>Try adding that to span.left</p>
<p>It will cause it to float to the left (as suggested by the syntax), for more information on floating in CSS, I suggest <a href="http://www.w3schools.com/css/pr_class_float.asp" rel="nofollow">W3Schools</a></p>
http://stackoverflow.com/questions/34581/inline-block-on-span/34612#346121Answer by rams for inline-block on spanrams2008-08-29T16:20:49Z2008-08-29T16:20:49Z<p>Thanks for the quick answer</p>
<p>adding float:left did make the 2 spans render next to one another. However I dont understand why the span gets pushed down without the float. What pushes it?</p>
http://stackoverflow.com/questions/34581/inline-block-on-span/34653#346530Answer by Teifion for inline-block on spanTeifion2008-08-29T16:33:47Z2008-08-29T16:33:47Z<p>I am not a CSS expert by any means so please don't take this as unarguable fact but I find that when something is floated, it makes no difference to the vertical position of things below it.</p>
<p>If you float the span.right to the right then add text beneath them you should get some interesting results, to stop these "interesting results" you can use "clear: left/right/both" which will cause the block with the clear styling to be under anything floated to the left/right/both. <a href="http://w3schools.com/css/pr_class_clear.asp" rel="nofollow">W3Schools</a> have a page on this property too.</p>
<p>And welcome to Stackoverflow.</p>
http://stackoverflow.com/questions/34581/inline-block-on-span/34826#348261Answer by rams for inline-block on spanrams2008-08-29T17:38:29Z2008-08-29T17:38:29Z<p>Thanks for the explanation. The float:left works beautifully with expected results in FF 3.1. Unfortunately, in IE6 the right side span renders 50% of the 50%, in effect giving it a width of 25% of the browser window. Setting its width to 100% achieves the desired results but breaks in FF 3.1 which is in standards compliance mode and I understand that. Getting it to work both in FF and IE 6, without resorting to hacks or using multiple css sheets has been a challenge</p>
http://stackoverflow.com/questions/34581/inline-block-on-span/34853#348531Answer by rams for inline-block on spanrams2008-08-29T17:50:18Z2008-08-29T17:50:18Z<p>I don't like this hack but it seems to do the job both in FF and IE6</p>
<p>span.right {
vertical-align:top;
display:inline-block;
text-align:right;
height:80px;
width:50%;
*width:100%;
background-color:red;
}</p>
<p>Note the *width: 100% which seems to satisfy IE6's requirement and FF ignores it</p>