@警告
@warn 和@debug 功能類似,用來幫助我們更好的調試Sass。如:
@mixin adjust-location($x, $y) {
@if unitless($x) {
@warn "Assuming #{$x} to be in pixels";
$x: 1px * $x;
}
@if unitless($y) {
@warn "Assuming #{$y} to be in pixels";
$y: 1px * $y;
}
position: relative; left: $x; top: $y;
}
具體代碼例子,請查看右側代碼編輯器中的代碼。