N
N
NazarJs2020-03-05 13:53:15
css
NazarJs, 2020-03-05 13:53:15

How to fix long word wrapping in IE11?

How to make long words in IE wrap to a new line if they don't fit on a line? overflow-wrap
options : break-word; word-wrap: break-word; -ms-word-break: break-all; word-break: break-all; does not work

Answer the question

In order to leave comments, you need to log in

1 answer(s)
X
xdevelx, 2020-03-05
@develx

.break_word {
  width: 690px;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
}

Works in IE8+
For IE11 should be enough
.break_word { 
  word-break: break-all;
  overflow-wrap: break-word;
}

Is there one in html?
<meta http-equiv="x-ua-compatible" content="IE=edge">

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question