less如何对css的属性进行插值?
想用less实现scss如下的效果@function a($token) { @return rbg(var(--color-#{token})) };但是使用less这样会报错.color(@token) { color: rbg(var([…
scss的@extend到底是怎么工作的?
网上查了资料都是一些案例,没有告诉你规律,比如下面一个例子:编译前#admin .tabbar a { font-weight: bold; } #demo .overview .fakelink { @exten…
关于vue样式的问题?
使用了qiankun// test.vue .login-body { .el-input__inner{ height: 50px; padding-left: 50px; line-height: 50px; font-size: 16px; color: #fff; …
scss @mixin和函数的执行顺序是什么样的?下面代码运行后为什么多了两个
$th: 'default'; //默认 $tha: 'blueWhite'; //蓝白 $thb: 'blackWhite'; //黑白 // 主题变量 $themes:( default-color :($th:#cad6dd, $tha:#666, $t…
scss里的颜色函数有对应的js实现吗
想要用css variables实现动态主题现在发现UI库里会经常使用scss的颜色函数,比如lighten、darken之类的,那么我想知道如何用js实现对应的函数效果比如…
scss 这种css有什么简便写法?
源代码li{ &:nth-child(1){ animation-delay: 0; } &:nth-child(2){ animation-delay: 0.2s; } &:nth-child(3){ animation-delay: 0.4s; } &:nth-chil…
Hbuilder+uniapp+uviewui SCSS 类选择器失效,仅有元素选择器起效?
开发环境Hbuilderuniappuviewui微信开发者工具问题在开发过程中使用了uviewui 的 u-form-item 组件 其组件编译出来的代码如下图所示我在组件中编写 SC…
请教下这段scss怎么优化
$--color-primary: #0076FB; $--color-white: #FFFFFF; $--color-black: #000000; $--color-success: #52C41A; $--color-warning: #FAAD14; $--color…
感觉这段代码冗余,但不知道怎么写好
就是一个风格一套颜色.row-center{ display: flex;justify-content: center;align-items: center; i{ margin-left:10px; font-size:10px } } .dot{ wi…
vue中引入的normalize.scss不起作用,求助谢谢!!
项目结构:main.scss里面我引入了normalize.scss:@import './config.scss'; @import './normalize.scss'; body { background-color: red; } .pull-lef…