使用 Stylus / Jeetcolumn()
或col()
mixins,有些没有编译,而是显示在我生成的 css 文件中。这不应该发生。
测试样式
@import 'jeet'
#main
center(1000px)
#content
col(2/3)
#sidebar
col(1/3)
生成的 test.css 片段
#content,
col(2/3), //<- This shouldn't be here
#sidebar {
...
}
#content:before,
col(2/3):before, //<- or this
#sidebar:before,
#content:after,
col(2/3):after, //<- this too
#sidebar:after {
content: '';
display: table;
}