如何用js给css变量赋值

53 阅读1分钟

定义css变量

<styule scoped>
:root{
--wdith:'';
}
</style>

赋值

document.documentElement.style.setProperty('--width','200px' );