span-x 类和“列”类之间有什么区别? blueprint-css 中的类?
我为名为 .column
的蓝图 css 类找到的定义说:
.column Use with .span-x classes to create combinations of columns in the layout.
但是 span-x
类似乎与此功能重叠,因为它们允许在不引用 < 的情况下定义列。代码>.列?
有人可以解释一下这两个类的区别吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.column 类已被删除。 它曾经与 .span-x 一起使用来定义列,但 css 已更新,以便带有 .span-x 的 div 自行定义列。
请参阅第 100 行 http://github.com/joshuaclayton/ blueprint-css/blob/e9e91bb94a0f498e63359556b2301cfd18400377/blueprint/screen.css
列类与带有 span-x 的任何 div 相同,
请查看 http://www.blueprintcss.org/ 获取最新版本。
乔什
the .column class has been dropped. it used to be used with .span-x to define a column but the css was updated so that a div with a .span-x defined a column by itself.
see line 100 at http://github.com/joshuaclayton/blueprint-css/blob/e9e91bb94a0f498e63359556b2301cfd18400377/blueprint/screen.css
the column class is the same as any div with a span-x
take a look at http://www.blueprintcss.org/ for the latest version.
Josh