首页 > 编程知识 正文

css中像素单位,像素是px

时间:2023-05-06 18:19:12 阅读:223091 作者:591

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}

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。