不用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>