警告

2018-02-24 15:11 更新

使用?Sass-MQ?中的這個(gè)函數(shù)可以轉(zhuǎn)換?px?為?em,展示如下:

@function mq-px2em($px, $base-font-size: $mq-base-font-size) {
  @if unitless($px) {
    @warn 'Assuming #{$px} to be in pixels, attempting to convert it into pixels.';
    @return mq-px2em($px + 0px);
  } @else if unit($px) == em {
    @return $px;
  }

  @return ($px / $base-font-size) * 1em;
}

如果碰巧值是無(wú)單位的,這個(gè)函數(shù)就會(huì)默認(rèn)單位是像素。就這一點(diǎn)而論,一個(gè)假設(shè)可能會(huì)帶來(lái)風(fēng)險(xiǎn),所以軟件應(yīng)該能夠預(yù)測(cè)風(fēng)險(xiǎn)并提醒使用者。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)