Shamoon
Shamoon

Reputation: 43491

Why isn't `white-space` consistent between IE and Firefox?

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?

Upvotes: 1

Views: 631

Answers (1)

Shamoon
Shamoon

Reputation: 43491

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

Upvotes: 2

Related Questions