input框禁止輸入選擇
.isinput{
pointer-events:none;
cursor:not-allowed;
}
禁止圖片文字選中拖動
/* 圖片不可拖動 */
img{ pointer-events: none;}
/* 文字不可選中 */
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
user-drag:none;
修改滾動條樣式
/* 定義滾動條樣式 */
::-webkit-scrollbar {
width: 10px;
height: 10px;
background-color: rgba(240, 240, 240, 1);
position: absolute;
}
/*定義滾動條軌道 內(nèi)陰影+圓角*/
::-webkit-scrollbar-track {
box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
border-radius: 10px;
background-color: rgba(240, 240, 240, .5);
}
/*定義滑塊 內(nèi)陰影+圓角*/
::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
background-color: #6db0f4;
}
鼠標(biāo)光標(biāo)樣式

image.png