使用 CSS 在元素内部禁用文本换行
若要禁用元素内部的文本换行,请使用 white-space 属性。您可以尝试运行以下代码来实现 white-space 属性
示例
<!DOCTYPE html>
<html>
<head>
<style>
p {
white-space: nowrap;
}
</style>
</head>
<body>
<p>
This is demo text. This is demo text.
This is demo text. This is demo text.
This is demo text. This is demo text.
This is some text. This is demo text.
</p>
</body>
</html>
广告
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP