Answers for "css td prevent text wrap"

CSS
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
0

td wrap text without space

.output {

overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;

}
Posted by: Guest on October-14-2021

Browse Popular Code Answers by Language