css3制作三角形
div:after{
content:"";
width:0;
height:0;
overflow:hidden;
border:6px solid transparent;
border-top-color:#ff0000;
position:absolute;
top:100%;
left:50%;
margin-left: -6px;
}
文本省略...样式
.text-cut {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.text-cut2 {
display: -webkit-box;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
网友评论