CSS 参考手册
CSS3 text-wrap 属性
Allow no line breaks
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p.test1 { width: 11em; border: 1px solid #000000; text-wrap: none; } p.test2 { width: 11em; border: 1px solid #000000; text-wrap: normal; } </style> </head> <body> <p class="test1">这段包含一些文本。这一行的文字不会换行到下一行。</p> <p class="test2"> 这段包含一些文本。这一行的文字正常换行。.</p> </body> </html>
运行结果:
点击运行 »