Answers for "make a text wrap in css"

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
1

css wrap

flex-wrap: nowrap | wrap | wrap-reverse

.flex-container {
  flex-wrap: wrap;
}
Posted by: Guest on February-06-2022

Browse Popular Code Answers by Language