我爱编程

css属性

2018-04-09  本文已影响0人  jiaomeichen
/*一般设置成 none*/
textarea:focus, input:focus{
    outline: none;
}
p {
    -webkit-user-select: none; /* Chrome, Opera, Safari */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}
input, button, textarea, select {
    *font-size: 100%;
    -webkit-appearance:none;
}
/*定义滚动条宽高及背景,宽高分别对应横竖滚动条的尺寸*/
div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: rgba(245, 245, 245, 0.47);
}
/*定义滚动条的轨道,内阴影及圆角*/
div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: #f5f5f5;
}
/*定义滑块,内阴影及圆角*/
div::-webkit-scrollbar-thumb {
    /*width: 10px;*/
    height: 20px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: rgba(85, 85, 85, 0.25);
}
-webkit-tap-highlight-color: transparent;
上一篇下一篇

猜你喜欢

热点阅读