Answers for "overflow word wrap"

CSS
8

css wordwrap

.ow {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal; //this is the one that gets you all the time
}
Posted by: Guest on May-08-2020
5

how to make text wrap on overfloe with css

.example {
  overflow-wrap: break-word;
}
Posted by: Guest on February-25-2020

Browse Popular Code Answers by Language