To force no line breaks, just use white-space:nowrap.
CSS settings do not wrap:
overflow:hidden hides
white-space: normal Default
pre line breaks and other whitespace characters will be protected
nowrap forces all text to be displayed in the same line until the end of the text or encounters a br object
Example: force No line breaks
div{ white-space:nowrap; }
For more usage of css white-space:nowrap attribute (you can force text to be output without line breaks), please pay attention to the PHP Chinese website for related articles!