- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望使用 Less CSS 在父 css 选择器中嵌套一些规则。通常这工作得很好,但我在 Twitter Bootstrap 的 css 中遇到了一个有问题的结构。这是有问题的混合模式:
.responsive-invisibility() {
&,
tr&,
th&,
td& { display: none !important; }
}
下面是我希望如何使用它:
body.force-sm-viewport-or-higher {
.visible-xs {
.responsive-invisibility();
}
/* more stuff */
}
这是产生的结果:
body.force-sm-viewport-or-higher .visible-xs,
trbody.force-sm-viewport-or-higher .visible-xs,
thbody.force-sm-viewport-or-higher .visible-xs,
tdbody.force-sm-viewport-or-higher .visible-xs {
display: none !important;
}
我想要的:
body.force-sm-viewport-or-higher .visible-xs,
body.force-sm-viewport-or-higher tr.visible-xs,
body.force-sm-viewport-or-higher th.visible-xs,
body.force-sm-viewport-or-higher td.visible-xs {
display: none !important;
}
如果不手动“扩展”body.force-sm-viewport-or-higher
父级中的 mixin,这是否可能?在升级 Bootstrap 时,扩展 mixins 非常容易出错且乏味。
注意
在这里,我发现了在嵌套类名后使用“&”符号的作用: LESS CSS: abusing the & Operator when nesting?
我还需要对这个更复杂的 mixin 做同样的事情。
.responsive-visibility() {
display: block !important;
table& { display: table; }
tr& { display: table-row !important; }
th&,
td& { display: table-cell !important; }
}
最佳答案
可能的解决方案是提供类名作为 mixin 参数附加:
.responsive-invisibility(@postfix) {
@{postfix},
tr@{postfix},
th@{postfix},
td@{postfix} {display: none !important;}
}
body.force-sm-viewport-or-higher {
.responsive-invisibility(~'.visible-xs');
/* more stuff */
}
编辑:您需要自己定义该 mixin,即不要修改原始的 Bootstrap .responsive-invisibility
,这样您就可以同时使用两者而不会发生冲突。
一个面向 future 的兼容解决方案,类似于@Scotts 回答中建议的解决方案(并且不受其启发)但产生的垃圾更少:
.invisible_ {
.responsive-invisibility(); // use original Bootstrap mixin
}
.responsive-invisibility(@postfix) {
@{postfix},
tr@{postfix},
th@{postfix},
td@{postfix} {&:extend(.invisible_);}
}
body.force-sm-viewport-or-higher {
.responsive-invisibility(~'.visible-xs');
/* more stuff */
}
如果他们在 Bootstrap 中这样做,这样您就不必修改隐形样式(但您仍然必须继续跟踪 tr, th, td
列表以防他们更改它)。
关于css - 使用 LESS 构造(例如 "td&")将父 css 类添加到 mixins,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21583889/
乐 mixins具有两个(或更多)性质,在同一个容器中组合多个值,或者值与角色一起。但是,据我所知,没有一种直接的方法可以检查不是由您创建的变量中的“混合性”。 这可能是个伎俩 my $foo = 3
我对 sass 比较陌生,但是当我学习它时,Sass 网站说要开始使用 @use 而不是 import,所以经过大量的反复试验,我终于弄清楚了如何使用它与导入相同。 注意:我使用 Prepros 进行
给定一个看起来像这样的代码片段,我如何编写一个函数来检查给定对象是否实现了某个混合?我尝试使用指针转换,但由于它们具有相同的基础,因此每个结果都是非空的,但我猜测有一个模板化的解决方案,但找不到我可以
我正在使用 Typescript 2.2 的 mixin,并且想使用另一个 mixin 的属性。 文档显示可以将 mixins 限制为仅混合到某些类中...... const WithLocation
我如何创建一个将嵌套的 mixin 属性用作参数的 mixin? 我用下一个例子来解释自己。 我有一个“过渡属性”mixin: .transition-property (@props){ -we
我浏览了language documentation而且 Google Dart 似乎不支持 mixins(接口(interface)中没有方法主体,没有多重继承,没有类似 Ruby 的模块)。我对此
我想编写返回混合的函数/混合。例如我有这个 mixin: @mixin generate-offsets-from-map($class-slug,$type,$from, $to, $step) {
所有 Less 文档和教程都使用 #namespace > .mixin()当它进入命名空间时的语法。但是我发现自己更习惯于 .namespace.mixin()语法,即: .namespace()
我正在努力实现以下目标: class A { def foo() { "foo" } } class B { def bar() { "bar" } } A.mixin B def a = n
出于本问题的目的,将“mixin”视为 https://www.typescriptlang.org/docs/handbook/mixins.html 中所述的函数。 .在这种情况下,mixin 扩
如何在 vue mixins 中组合两个函数? Vue.mixin({ methods: { functionOne: () => { console.log(1)
我需要重写 mixin 添加的一些成员函数来自第三方库。问题是:mixin 立即在多个第 3 方类定义中使用,在定义 mixin 的同一个脚本文件中。我只能在此脚本之前或之后插入自定义代码,而不能在两
我有一些基本的 mixin,它们使用媒体查询应用一些规则 .on-small(@rules) { @media (@minWidthSmall) { @rules(); } } .on-mediu
我尝试安装 npm 包。所有软件包都安装正确。 但是当我尝试使用 npm start 运行应用程序时当时发生以下错误: ERROR in ./node_modules/css-loader?{"sou
这里有两个mixin @mixin parent { .parent & { @content; } } @mixin child($child) { .#{$child} & {
我在另一个 mixins 中有一个 mixins .background(@url: @base-url , @repeat: repeat, @pos1: left, @pos2: center
我有这个: 如您所见,我目前有一个包含按钮样式混合宏的条件,无论如何我可以自动包含一个吗?例如: @mixin button($color) @include button-#{$color} 最
我有以下代码,可以很好地将各种 std::tuples 转发到我的“BaseSensor”主机类的各种 mixin。 #include // std::cout std::endl #include
我按照概述的方式组织我的 sass (scss) 文件 here ... stylesheets/ | |-- modules/ # Common modules | |
所以,这是我的第一个 mixin .3transitions (@value1,@value2,@value3,@duration){ @value: ~"@{value1},@{value2}
我是一名优秀的程序员,十分优秀!