Reputation: 27384
On IE11 only, text clips on certain pages, the text is contained within a <section>
with CSS like so. Note that this works in IE10 and below, Chrome and FF, it is only IE11 that has this issue.
#rightpanel section {
margin: 0 auto;
max-width: 900px;
}
If you look at this photo, the text should run right to the edge of the blue box. Note that this highlighting is applied with the IE11 DOM highlighter.
Upvotes: 0
Views: 399
Reputation: 3932
This is often caused by a syntax error in CSS. For example see here: IE 11 clipping text
See if you have something like this anywhere else in your CSS.
Upvotes: 1