CSS property value from class name(来自类名的 CSS 属性值)
问题描述
可以在类名中为 CSS 传递参数吗?例如:
.mrg-t-X {边距顶部:Xpx;}
<span class="mrg-t-10">测试</span>
在这个例子中,X 应该是 10.
不,不是.我们最接近这个的是 attr()
函数,但这仅适用于 content
属性:
figure::before {内容: attr(data-before) ', ';}图::{之后内容: attr(data-after) '!';}
<figure data-before="Hello" data-after="world"></figure>
上一个>
也许有一天它会被扩展,以便我们可以在其他地方使用它,但目前这是不可能的.
目前我确信您知道如果您希望能够使用 .mrg-tX
类,您需要为每个 X 定义单独的样式规则
你希望允许:
.mrg-t-1 { ... }.mrg-t-2 { ... }.mrg-t-3 { ... }...
It is possible to pass parameters for CSS in class name? For example:
.mrg-t-X {
margin-top: Xpx;
}
<span class="mrg-t-10">Test</span>
In this example X should be 10.
No it isn't. The closest we have to this is the attr()
function, but that only works within the content
property:
figure::before {
content: attr(data-before) ', ';
}
figure::after {
content: attr(data-after) '!';
}
<figure data-before="Hello" data-after="world"></figure>
Perhaps one day this will be expanded so that we can use it elsewhere, but for now this isn't possible.
Currently as I'm sure you're aware if you want to be able to use the .mrg-t-X
class, you'll need to define separate style rules for each X
you wish to allow:
.mrg-t-1 { ... }
.mrg-t-2 { ... }
.mrg-t-3 { ... }
...
这篇关于来自类名的 CSS 属性值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:来自类名的 CSS 属性值


- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Fetch API 如何获取响应体? 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01