text-align: center;
line-height: 60px;
其中60px为该div的高度a {
text-decoration: none;
}
float: right;
height: 50px;
line-height: 50px
设置line-height
的值和div
的高一致
margin: 0 auto;
display: inline-block
多行文本
p {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4; /* 可以显示的行数,超出部分用...表示*/
-webkit-box-orient: vertical;
}
单行文本
div1{
overflow: hidden;
text-overflow: ellipsis; //超出部分以省略号显示
white-space: nowrap;
width: 20em; //用px单位亦可行
}
原文:https://www.cnblogs.com/DeaconOne/p/12184560.html