将截断的文字可选的显示出来
程序员文章站
2024-02-01 23:36:40
...
一.原版本
原版本在文字溢出的时候只做简单的裁剪或者加上截断符号,但被截断的文字就不可查了。
CSS选择器
div {
border:1px solid #000000;
height: 80px;
width: 200px;
}
HTML标签
<!--当文字溢出的时候只做简单的裁剪-->
<div style="overflow:hidden;white-space:nowrap;text-overflow:clip;">
overflow:hidden;white-space:nowrap;text-overflow:clip;
</div>
<!--当文字溢出的时候裁剪之后显示裁剪标记-->
<div style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;">
overflow:hidden;white-space:nowrap;text-overflow:ellipsis;
</div>
效果CUT
完整链接
二.升级版
升级的部分就是既能做到截断溢出的部分,还能在鼠标指针移到截断处的时候将被截掉的部分在范围外显示出来。
网页源码
<!DOCTYPE html>
<html>
<meta http-equiv="content-type" content="text/html" ;charset="utf-8">
<title>文字溢出问题</title>
<head>
<style>
div.test{
white-space:nowrap;
width:12em;
overflow:hidden;
border:1px solid #000000;
}
div.test:hover{
text-overflow:inherit;
overflow:visible;
}
</style>
</head>
<body>
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in thebox</div>
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
</body>
</html>
演示说明
页面一开始是这样的:
可见,溢出的部分就被截断了。
我们把鼠标移到二者的末尾处:
溢出的文字在范围外显示出来了,这就是我们需要的效果。
上一篇: jquery使用技巧总结