css超出文字中间显示...
时间: 2023-12-21 21:58:00 浏览: 158
css实现div自动添加滚动条(图片或文字等超出时显示)
可以使用CSS的text-overflow属性来实现超出文字中间显示省略号的效果。
1. 设置元素的宽度,让超出部分隐藏。
```css
div {
width: 100px;
overflow: hidden;
}
```
2. 使用text-overflow属性设置超出文字的省略方式为中间显示省略号。
```css
div {
width: 100px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
```
完整代码如下:
```html
<div class="ellipsis">这是一段超长的文本内容,需要省略显示...</div>
```
```css
.ellipsis {
width: 100px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
```
效果如下:
这是一...
阅读全文