纯css实现省略号,兼容火狐,IE9,chrome

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>多行文本实现省略号显示</title>
</head>
<style type="text/css">
    /*纯css实现省略号,兼容火狐,IE9,chrome*/
    .wrap{
        height:40px;line-height:20px;overflow: hidden;width:500px;background:#999;
    }
    .wrap .text{
        float:right;margin-left:-5px;width:500px;word-break: break-all;
    }
    .wrap::before{
        float:left;width:5px;content:'';height:40px;
    }
    .wrap::after{
        float:right;content:'...';height:20px;line-height:20px;
        width:30px;margin-left:-30px;/*更改宽度和边距,移动省略号位置*/
        position:relative;left:100%;top:-20px;
        padding-right:5px;background:#999;
    }
</style>
<body>
    <div class="wrap">
        <div class = "text">
            ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试ceshi测试
        </div>
    </div>
</body>
</html>

  

posted @   张小中  阅读(553)  评论(1编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
点击右上角即可分享
微信分享提示