Answers for "how to stop text wrapping html"

CSS
5

stop text from wrapping

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

html text not wrapping

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

Code answers related to "how to stop text wrapping html"

Browse Popular Code Answers by Language