up vote 2 down vote favorite
2
share [g+] share [fb]

I have a issue with one of my spans. Please cosider the following styles:

.form_container .col1che
{
float: left; 
width: 4%; 
text-align: left;

}



.form_container .col2che
{
float: left; 
width: 80%; 
text-align:left;

}



.form_container .col3che
{
float: right; 
width: 13%; 
text-align:right;

}

These 3 spans in my code:

<div class="row"><!-- start: "row" -->


<span class="col1che">

<?php  //some db feeds  ?>

</span>


<span class="col2che">

<?php  //some db feeds  ?>

</span>

<span class="col3che">

<?php  //some db feeds  ?>

</span>


<div class="clear"></div>



</div><!-- end: "row" -->

the problem occurs when there is no data to be displayed in "COL1CHE" (or maybe even in any of them although im not sure) when there is no data this span "collapses" and its width is not honored. This happens in Firefox, in IE it doesn't "collapse".

I included a "clear" class to see if this helps but to no avail.

any ideas?

thanks

link|improve this question

77% accept rate
hmmm, what you guys say makes perfect sense, but for some reason even after adding display:block it still "collapses" funny, if i add a border to the column class it will show the proper width even if there is no content. but if there is no content, no border, it just collapses – chicane Jul 21 '09 at 20:23
o yea, another thing, how come if my spans were not set up as blocks and if there is content within them, then the widths are set up correctly like in the style sheet? (not that im debating whether widths are honored for inline elements, im just curious why they worked for me) – chicane Jul 21 '09 at 20:29
feedback

5 Answers

up vote 1 down vote accepted

display: block will not help you here because when float is activated, the elements is automatically switched to block mode, whatever its initial mode, so your width should work.

The problem may be with the empty <span> tag which might not be rendered because of some obscure rule I cannot remember. You should try preventing your span from being empty, maybe by adding a &nbsp; if the content is empty.

link|improve this answer
ok great, floated elements becoming automatically blocks explains alot in terms of the behaviour i saw on my page... i tried the nbsp tip and it worked great thanks...if someone who knows why no content would make this collapse maybe they can chime in just to clarify this curious behaviour, but for now this is a great fix. – chicane Jul 21 '09 at 20:40
feedback

Span is an inline element and you can therefore not set a width. To set a width you must first set it to a block element with

display:block;

After that you can set a width. Since span is a native inline element, you can use inline-block too and it will even work in IE:

display:inline-block;
link|improve this answer
feedback

Width is not honored because span is an inline element. To fix this, add:

display: inline-block;

Depending on your situation, display: inline-block may be better than display: block because any content after the span won't be forced onto a new line.

link|improve this answer
feedback

To make this work simply add

display: block;

To the style.

link|improve this answer
feedback

How does it make sense to change the display property of an inline element?

It's much better semantically to just use a div tag, which is block by default and requires no additional CSS to function as intended.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.