禁止用户选择文字,更改浏览器滚动条样式,去除浏览器自动填充背景

*{
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

/*滚动条宽度*/
::-webkit-scrollbar {
    width: 8px;
}

/* 轨道样式 */
::-webkit-scrollbar-track {

}

/* Handle样式 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
}

/*当前窗口未激活的情况下*/
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0,0,0,0.1);
}

/*hover到滚动条上*/
::-webkit-scrollbar-thumb:vertical:hover{
    background-color: rgba(0,0,0,0.3);
}
/*滚动条按下*/
::-webkit-scrollbar-thumb:vertical:active{
    background-color: rgba(0,0,0,0.7);
}



input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset; }


你可能感兴趣的:(禁止用户选择文字,更改浏览器滚动条样式,去除浏览器自动填充背景)