css字体超出自动换行
时间: 2023-11-04 17:59:05 浏览: 105
CSS中可以使用`word-wrap: break-word;`属性来实现文字超出宽度自动换行。这个属性会在内容超过容器边界时强制换行,即使没有空格或连字符。另外,也可以使用`word-break: break-all;`属性来实现词内换行,即在词的中间位置进行换行。
下面是一个例子,展示了如何使用CSS实现文字超出宽度自动换行:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.text {
width: 200px;
word-wrap: break-word;
word-break: break-all;
}
</style>
</head>
<body>
<div class="text">
This is a long text that will wrap automatically if it exceeds the width of the container.
</div>
</body>
</html>
```
在上述例子中,`.text`类定义了一个宽度为200px的容器,并设置了`word-wrap: break-word;`和`word-break: break-all;`属性。当文本内容超过容器宽度时,文本会自动换行。
阅读全文