.text-overflow {
display:block/*内联对象需加*/
width:31em
word-break:keep-all/* 不换行 */
white-space:nowrap/* 不换行 */
overflow:hidden/* 内容超出宽度时隐藏超出部分的内容 */
text-overflow:ellipsis/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden一起使用。*/
}
扩展资料:上面是不带省略号,反之显示省略号
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
margin: 0px
padding: 0px
}
#div1 {
width: 300px
height: 300px
background: red
}
.pText {
display: block
height: 30px
width: 250px
text-overflow: ellipsis
overflow: hidden
white-space: nowrap
}
.aText {
width: 100px
white-space: nowrap
}
</style>
</head>
<body>
<div id="div1">
<span>
<a>空白会被浏览器保留。其行为方式类似 HTML 中的标签。</a>
</span>
</div>
</body>
</html>
多行文本可以使用如下样式:
.intwoline {
display: -webkit-box !important
overflow: hidden
text-overflow: ellipsis
word-break: break-all
-webkit-box-orient: vertical
-webkit-line-clamp: 3
}
网页教学网text-indent:-9999px:text-indent是首行缩进,所以对于多行文本,若单独使用它就有明显的不足,需加上white-space:nowrap来弥补不足,但还有一个问题:物理空间仍然存在,故还需设置line-height:0或使用超小字体(在IE下有点BUG),最终代码如下: 以下为引用的内容:.texthidden{overflow:hiddenwidth:0height:0}positon:absolute:网页教学网用绝对定位将其推出可视区,不过虽然可视性不存在,但仍占据物理空间,与隐藏文字的宗旨相背 网页教学网以下为引用的内容:.texthidden{
一般的文字截断(适用于内联与块):.text-overflow
{display:block/*内联对象需加*/width:31em/*指定宽度*/word-break:keep-all/*
不换行
*/
white-space:nowrap/*
强制在同一行内显示所有文本,直到文本结束或者遭遇
br
对象。不换行
*/overflow:hidden/*
内容超出宽度时隐藏超出部分的内容
*/
text-overflow:ellipsis/*
IE
专有属性,当对象内文本溢出时显示省略标记(...)
;需与overflow:hidden一起使用。*/}对于表格文字溢出的定义:table{width:30em
table-layout:fixed/*
只有定义了表格的布局算法为fixed,下面td的定义才能起作用。
*/}td{width:100%
word-break:keep-all/*
不换行
*/
white-space:nowrap/*
不换行
*/
overflow:hidden/*
内容超出宽度时隐藏超出部分的内容
*/
text-overflow:ellipsis/*
当对象内文本溢出时显示省略标记(...)
;需与overflow:hidden一起使用。*/}需要注意的是,这个东东只对单行的文字的效,如果你想把它用在多行上,也只有第一行有作用的。