文本超过 2 行隐藏
css
.box {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}滚动条样式
css
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track-piece {
background-color: transparent;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical {
height: 6px;
background-color: #3e4452;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 6px;
background-color: #3e4452;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
background-color: #3e4452;
}
