Answers for "html word-wrap tag"

CSS
6

text wrap

div {
  word-wrap: break-word;
  white-space: nowrap;
}
Posted by: Guest on June-09-2021
1

word wrap in css

.custom-break {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal!important; 
}
Posted by: Guest on March-16-2022

Browse Popular Code Answers by Language