Why is my text being cut off in IE7?

前端 未结 3 1198
没有蜡笔的小新
没有蜡笔的小新 2021-02-06 07:03

The text on my web page looks fine in Firefox & Safari, but in IE7 certain portions are cut off. It looks like (but it hasn\'t) it has been placed in a smaller elem

3条回答
  •  忘了有多久
    2021-02-06 07:34

    Try changing the overflow attribute for the element the text is in.

    Overflow: auto;
    

    Or

    Overflow: Visible;
    

提交回复
热议问题