0

I tried to apply a background with no-repeat set to "inline" elements, on IE9, if the text spans more than one line the image appears on all lines, did anyone face this problem yet? does anyone have a solution?

.text {background: url(../images/ibullet.png) no-repeat left top;
    display: inline; /* or inline-block */
     }

<span class="text">try me on multiple lines</span>
Ayyash
  • 4,257
  • 9
  • 39
  • 58
  • 4
    there is a typo in your code, it should be: background: url(../images/ibullet.png) no-repeat left top; (remove the last bracket) – Caspar Kleijne Feb 08 '11 at 09:06
  • err, ignore that typo, i just wrote it from sratch here, but the bug is still valid :) – Ayyash Feb 11 '11 at 12:13

1 Answers1

2

IE9 isn't final yet, the release candidate was outed today. If you think there is a bug, then the solution is to report it so that it can be fixed for the final release.

It's not advised to use work arounds in pre-release builds of browsers. You can report the bug by clicking the Tools (Alt+X) -> Send Feedback.

Andy E
  • 338,112
  • 86
  • 474
  • 445