How to realize table display without line breaks: First open the corresponding HTML code file; then add the style "word-break: keep-all;word-wrap:break" to "td,th" under the table -word;" can achieve the effect of display without line breaks.
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
The effect of displaying no line breaks in the table of html
In the table, if you need no line breaks in the cells, add styles to td and th under the table
word-break: keep-all; word-wrap:break-word;
word -break: keep-all; In this case, there will be no line wrapping in Chinese.
word-wrap:break-word; English will not wrap.
If there are spaces in the middle, at the spaces By default, it will wrap. If you need not to wrap, use the following style
white-space: nowrap;
In this case, there is generally no need to set the width in the table. The table will automatically adjust according to the content
[Recommended learning: HTML video tutorial】
The above is the detailed content of How to display html table without line breaks. For more information, please follow other related articles on the PHP Chinese website!