Reputation: 31
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 is clipped (independent on the location on the page).
I tried:
All resulted in the same cut off text... Its online you can see it here:
Works in all other browsers but IE11... Any hints?
Upvotes: 3
Views: 694
Reputation: 3932
Your problem appears to be in screen.css
on line 913:
text-shadow: 0px 1px 1px #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: 0px 1px #fff;
This should work as well.
Upvotes: 2
Reputation: 115011
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.
Upvotes: 0