text-overflow 当属性规定当文本溢出包含元素时发生的事情
clip: 修剪文本
ellipsis : 用省略号来代表被修剪的文字
string: 使用给定的字符串来代表被修剪的文字
重点是三个同时使用:
text-overflow:ellipsis;
white-space:nowrap;
overflow:hidden;
设置最高高度..超过后可以滑动
max-height: 550rpx;
overflow-y: scroll;
换行
- 强制不换行
white-space:nowrap; - 自动换行
div{
word-wrap: break-word;
word-break: normal;
} - 强制英文单词断行
div{
word-break:break-all;
}
用纯CSS创建一个三角形
原理把上、左、右三条边隐藏掉(颜色设为 transparent)
.demo {
width: 0;
height: 0;
border-width: 20px;
border-style: solid;
border-color: transparent transparent red transparent;
}
overflow: hidden当强制不换行的时候,使用overflow:hidden隐藏超过界面的部分
设置最高高度..超过后可以滑动
max-height: 550rpx;
overflow-y: scroll;
小程序边框线太粗了怎么办
::after {
position: absolute;
content: '';
width: 100%;
left: 0;
bottom: 0;
height: 1rpx;
background-color: #e3e5e9;
-webkit-transform: scale(1, 0.5);
transform: scale(1, 0.5);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
内容文本保留3(n)行,溢出显示...
display:-webkit-box;
word-break:break-all;
text-overflow:ellipsis;
white-space:normal;
overflow:hidden;
-webkit-box-orient:vertical;
-webkit-line-clamp:3;
color:#666666;