我使用这些代码段:
class="large-6 small-12 columns ..."
当我删除“columns”类时,它就是
class="large-6 small-12"
......我认为没有区别。
所以我想知道:
什么是“columns”类?
有人可以向我解释一下吗?
答案 0 :(得分:3)
columns
或column
附加了一些基本的CSS;
.column, .columns {
width: 100%;
float: left;
padding-left: .625rem; /* you can set this in the CSS generator or SASS */
padding-right: .625rem; /* you can set this in the CSS generator or SASS */
}
如果没有.column
类,则列不会排成行。