如何使用 CSS 防止换行
要使用CSS防止文本换行,可以使用white-space
属性。设置white-space
属性为nowrap
可以阻止文本在达到边界时自动换行。
下面是一个简单的例子:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prevent Text Wrap</title>
<style>
.no-wrap {
white-space: nowrap;
}
</style>
</head>
<body>
<p class="no-wrap">这段文本将不会换行,而是在一行内连续显示,即使它超过了父元素的宽度。</p>
</body>
</html>
在这个例子中,<p>
元素的类.no-wrap
应用了white-space: nowrap;
样式规则,这会导致其中的文本不会换行。
评论已关闭