常用代码
2022年10月14日小于 1 分钟
多行文本超出省略号
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
底部阴影
.box:before {
content: "";
height: 100px;
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
box-shadow: 0 6px 50px rgba(156, 156, 156, 0.6);
z-index: -1;
width: 80%;
}
页面变灰色
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
/* filter: grayscale(100%); */
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
filter: gray;
}