IE 11 clipping text

笑着哭i 提交于 2019-12-10 19:44:09

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!