css的全局变量和局部变量设置

https://www.cnblogs.com/showcase/p/10523483.html

https://blog.csdn.net/Stand_Fast/article/details/119785155

设置全局:

:root{  
    --bgColor:#ff0000;       /**全局背景颜色**/    
    --fontColor:#333333;    /**通用基本字体颜色**/
}

  

  

引用:

.bgGray{
    background: var(--bgColor) ;
    height: 100%;
}

  

posted @ 2021-11-10 13:26  星宝攸宁  阅读(182)  评论(0)    收藏  举报