Answers for "how to make text break css"

CSS
3

css how to make text not break

/* If you don't know why your line is breaking or you just want to make sure
this doesn't happen, add the CSS bellow: */
white-space: nowrap;

/* Example: */
/* HTML: */
<p>This is a paragraph<p>
/* CSS: */
p { white-space: nowrap; }
Posted by: Guest on December-08-2020
0

break word css

p{
  word-wrap: break-word;
}
Posted by: Guest on October-07-2021

Browse Popular Code Answers by Language