删除值和单位之间的 space。 SASS
Remove space between value and units. SASS
为将像素转换为 rem 而编写的 SCSS 函数在值和单位之间生成 space。如何避免space。 URL 中提到的详细信息如下。
jsfiddle 域 + /9pe5a1kx/1/
使用这个函数:
@function px2em($px, $metric: 'em', $base-font-size: 16px) {
@if unitless($px) {
@warn "Assuming #{$px} to be in pixels, attempting to convert it into pixels.";
@return px2em($px * 1px, $metric, $base-font-size);
} @else if unit($px) == em {
@return $px;
}
@return #{($px / $base-font-size) + $metric};
}
为将像素转换为 rem 而编写的 SCSS 函数在值和单位之间生成 space。如何避免space。 URL 中提到的详细信息如下。
jsfiddle 域 + /9pe5a1kx/1/
使用这个函数:
@function px2em($px, $metric: 'em', $base-font-size: 16px) {
@if unitless($px) {
@warn "Assuming #{$px} to be in pixels, attempting to convert it into pixels.";
@return px2em($px * 1px, $metric, $base-font-size);
} @else if unit($px) == em {
@return $px;
}
@return #{($px / $base-font-size) + $metric};
}