作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚安装了Breakpoint,添加了
require "breakpoint"
到我的 config.rb,并定义了这些断点
$mobileMedium : 480px;
$tabletVertical : 768px;
$desktopNormal : 1024px;
$desktopWide : 1200px;
到我的 _breakpoint.scss。
当我尝试使用其中一个断点时,像这样;
@include breakpoint($mobileMedium) {
…
}
终端告诉我
error sass/screen.scss (Line 27: Undefined mixin 'breakpoint'.)
这是为什么呢?
最佳答案
您可能需要在 _breakpoint.scss 部分的顶部导入断点
@import "breakpoint";
关于compass-sass - Sass 断点不起作用 - 我做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18836165/
我是一名优秀的程序员,十分优秀!