zen 编码 - css 语法/样式属性
我找不到使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是有关 zen 编码方式的 css 属性的完整文档
请参阅此
您的代码对于上面的 html 将是这样的:
编辑:
Here is full documentation on css property for zen coding way
See this
Your code for above html will be like this :
EDIT :
给它 CSS 可以定义的类。
从那里,您可以在 CSS 文件中编写以下内容:
展开这两行后,您可以将“red”添加到 bg 值;
Would give it the class that the CSS could then define.
From there, you could write this in the CSS file:
After expanding both lines, you can add the "red" to the bg value;