问题
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:
- giving it width,
- adding height,
- putting the paragraph in a separate div,
- creating a table,
- relocating to bottom.
All resulted in the same cut off text... Its online you can see it here:
Works in all other browsers but IE11... Any hints?
回答1:
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.
回答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.
来源:https://stackoverflow.com/questions/24162668/ie-11-clipping-text