1. 文本内容显示设置
1.1 单行显示
display: inline-block;
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
1.2 多行显示
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
1.3 段落首行缩进 2 字符
text-indent: 2em
2. 自定义滚动条样式
::-webkit-scrollbar-track-piece {
border-left: 1px solid #d2d2d2;
background-color: #fef1f4;
}
::-webkit-scrollbar-thumb {
width: 8px;
border: 1px solid #cbcbcb;
background: #cbcbcb;
border-radius: 5px;
}
::-webkit-scrollbar {
margin-right: 2px;
width: 8px;
height: 8px;
}
3. 图片处理
3.1 网页背景图片
background-image: url("图片url")
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
3.2 图片撑满父 div
display: block;
position: absolute;
min-width: 100%;
min-height: 100%;
object-fit: cover;