天天看點

css的像素機關PX或PxPX和Px的用途

PX和Px的用途

如果你希望部分 px 機關不被轉換成 rpx 或者 rem ,最簡單的做法就是在 px 機關中增加一個大寫字母,例如 Px 或者 PX 這樣,則會被轉換插件忽略。如:

/* `px` is converted to `rem` */
.convert {
  font-size: 16px; // converted to 1rem
}

 /* `Px` or `PX` is ignored by `postcss-pxtorem` but still accepted by browsers */
.ignore {
  border: 1Px solid; // ignored
  border-width: 2PX; // ignored
}