当前位置:网站首页>El tooltip in the table realizes line breaking display
El tooltip in the table realizes line breaking display
2022-07-01 05:48:00 【Lonely and arrogant ζ】
effect

html Code
<el-table-column
prop="workcontents"
key="workcontents"
label="label"
align="center"
width="100"
>
<template slot-scope="scope">
<el-tooltip placement="top">
<div
style="max-width:480px" // Set the maximum width
v-html="scope.row.workcontents" // Display content
slot="content"
></div>
<span class="overHiddlen">
{
{ scope.row.workcontents }} // Show ellipsis
</span></el-tooltip
>
</template>
</el-table-column>css Code
.overHiddlen {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1; /* Number of lines that can be displayed , Use... For the excess part ... Express */
-webkit-box-orient: vertical;
}边栏推荐
猜你喜欢
随机推荐
bat操作ftp上传下载命令
OpenGL ES: (5) OpenGL的基本概念、OpenGL ES 在屏幕产生图片的过程、OpenGL管线(pipeline)
win10、win11中Elan触摸板滚动方向反转、启动“双指点击打开右键菜单“、“双指滚动“
2022.6.30-----leetcode. one thousand one hundred and seventy-five
Idea start view project port
亲爱的派盘用户,我要向您表白!
SQL必会题之留存率
导数的左右极限和左右导数的辨析
OneFlow源码解析:算子签名的自动推断
Continue to learn MySQL
Basic electrician knowledge 100 questions
Code shoe set - mt3114 · interesting balance - explain it with examples
SSM的教务管理系统(免费源码获取)
[QT] QT after addition, subtraction, multiplication and division, two decimal places are reserved
Ssgssrcsr differences
HCM 初学 ( 四 ) - 时间
OpenGL ES: (2) OpenGL ES 与 EGL、GLSL的关系
Speed regulation and stroke control based on Ti drv8424 driving stepper motor
excel动态图表
Preliminary level of C language -- selected good questions on niuke.com









