I have <span class="text">11-12.SL.1 Some long text</span> where text has the following styles applied:

clear: left;
display: inline;
white-space: nowrap;
word-wrap: normal;

IE however, doesn't respect the white-space parameter. This is in IE

vs Firefox, which respects it properly. This in FF

How can I get IE to respect it?

link|improve this question

1  
What version of IE? You're on Windows XP, so it certainly can't be 9... – BoltClock Aug 10 '11 at 16:05
Can you post your code? It is possible that your rule isn't specific enough for IE and that it is simply not being applied to the element. What version of IE? – Jrod Aug 10 '11 at 16:07
1  
Could it be because of word-wrap which is a CSS3 property? – Andrew Peacock Aug 10 '11 at 16:09
The word-wrap doesn't seem to be the issue. The white-space does. For reference, I'm using IE8. – Shamoon Aug 10 '11 at 17:37
feedback

1 Answer

up vote 1 down vote accepted

Turns out I needed to propagate the white-space up to the parents =)

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.