Skip to content Skip to sidebar Skip to footer

Ie 11 Clipping Text

I have the same issue on my page as described in this post. Only difference: my page is online. It's a simple page with a paragraph and divs, but still the text in the paragraph

Solution 1:

Your problem appears to be in screen.css on line 913:

text-shadow: 0px1px1px#fff;

If you cancel this line (I tried in the debugger), it works.

This is because you gave 3 pixel properties, which didn't seem to work in your example. Try changing it to two properties, for example:

text-shadow: 0px1px#fff;

This should work as well.

Solution 2:

It appears to be be related to the text-shadow generically applied to #content-wrapper.

If you reset this on the paragraph the text re-appears.

Post a Comment for "Ie 11 Clipping Text"