zen 编码 - css 语法/样式属性

发布于 2024-12-03 08:00:15 字数 161 浏览 0 评论 0原文

我找不到使用 zen 编码添加 CSS 属性的语法。也许我忽略了禅宗备忘单。

例如,如何缩短以下内容:

<div style="background-color: red; float: right;"></div>

I can't find the syntax about adding CSS properties using zen coding. Maybe I have overlooked the zen-cheat-sheet.

For example, how can I shorten the following:

<div style="background-color: red; float: right;"></div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悟红尘 2024-12-10 08:00:15

以下是有关 zen 编码方式的 css 属性的完整文档

请参阅

您的代码对于上面的 html 将是这样的:

编辑:

div[style=background-color:red;float:right;]

Here is full documentation on css property for zen coding way

See this

Your code for above html will be like this :

EDIT :

div[style=background-color:red;float:right;]
耳根太软 2024-12-10 08:00:15
div.red_fl_right

给它 CSS 可以定义的类。
从那里,您可以在 CSS 文件中编写以下内容:

red_fl_right{        
    bg
    fl:r
}

展开这两行后,您可以将“red”添加到 bg 值;

div.red_fl_right

Would give it the class that the CSS could then define.
From there, you could write this in the CSS file:

red_fl_right{        
    bg
    fl:r
}

After expanding both lines, you can add the "red" to the bg value;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文