css实用


1、css滚动条默认样式修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.innerbox::-webkit-scrollbar {/*滚动条整体样式*/
width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
height: 4px;
}
.innerbox::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
border-radius: 5px;
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: rgba(0,0,0,0.2);
}
.innerbox::-webkit-scrollbar-track {/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
border-radius: 0;
background: rgba(0,0,0,0.1);
}
2、CSS输入框placeholder颜色修改
1
2
3
4
input::-webkit-input-placeholder{ color:red; } /* WebKit browsers */
input:-moz-placeholder{ color:red; }/* Mozilla Firefox 4 to 18 */
input::-moz-placeholder{ color:red; }/* Mozilla Firefox 19+ */
input:-ms-input-placeholder{ color:red;} /* Internet Explorer 10+ */
不用less和sass怎么定义样式变量
1
2
3
4
5
6
7
8
9
10
11
12
//:root是css3属性,可以将:root替换为html
<style type="text/css">
:root{
--button-height: 32px;
--font-size: 14px;
--border-radius: 3px;
--color: #333;
}
body{
font-size: var(--font-size);
}
</style>