Answers for "css word wrap is not wrapping text"

CSS
12

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
0

html text not wrapping

p{
  white-space: normal;
}
Posted by: Guest on March-28-2022

Browse Popular Code Answers by Language