CSS笔记

2021/8/16 Css

# 光标聚焦

cursor: pointer;

# 溢出文字省略

/* 一行 */
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

/* 多行 */
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* 行数 */
line-clamp: 2;
-webkit-box-orient: vertical; /* 盒子中内容竖直排列 */

# 动画停止播放

animation-play-state: paused;
更新时间 : 2022年11月11日星期五下午3点22分