Answers for "prevent wrapping of text css"

CSS
5

stop text from wrapping

div {
  white-space: nowrap;
  overflow: hidden;
}
Posted by: Guest on March-02-2020
0

css prevent text wrap

div {
  /* This is the default, you don't need to
     explicitly declare it unless overriding
     another declaration */
  white-space: normal; 
}
Posted by: Guest on July-26-2021

Browse Popular Code Answers by Language