关于字体的一堆CSS操作

一.字体换行和字体行数和字体溢出隐藏
一行文字
overflow:hidden; text-overflow:ellipsis; white-space: nowrap;
多行(定义行)文字
overflow : hidden;
display: -webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient: vertical
鼠标悬停显示隐藏省略文字
li {
      width: 18.5%;
      text-align: center;
      font-size: 18px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}

li:hover {
      text-overflow: inherit;
      overflow: visible;
      white-space: nowrap;
}
删除线效果
text-decoration:line-through

 

 

关于字体的一堆CSS操作

上一篇:CSS3自定义滚动条样式


下一篇:requests.put上传文件Content-Disposition被写进了文件里