weekCodeing / interview-answe

🌍 前端程序员训练 求星星 ✨ 各位同学可以在issues中提问,无论是实际项目中遇到的问题,或者是技术问题都可以, 大家一起解决💯 👍 😄。
http://www.dadaqianduan.cn/
76 stars 9 forks source link

158.[CSS]css文本过长显示省略号 #158

Open webVueBlog opened 4 years ago

webVueBlog commented 4 years ago

[CSS]

webVueBlog commented 4 years ago
<style scoped>
    .text {
        width: 55px;
        -webkit-line-clamp: 1;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        word-break: break-word;
    }
</style>