Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 360 Bytes

CSS.md

File metadata and controls

27 lines (21 loc) · 360 Bytes

文本本超长显示省略号

.overflow_omitted {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

鼠标样式

.mouse_style {
    cursor: pointer;
    /*cursor: url(https://blog-static.cnblogs.com/files/big2cat/chiken.ico),auto;*/
}

页面灰度

.grayscale {
	filter: grayscale(1);
}