Rem to px preset
Chuyển rem thành px cho tất cả tiện ích.
Cài đặt
bash
pnpm add -D @unocss/preset-rem-to-pxbash
yarn add -D @unocss/preset-rem-to-pxbash
npm install -D @unocss/preset-rem-to-pxbash
bun add -D @unocss/preset-rem-to-pxts
import presetRemToPx from '@unocss/preset-rem-to-px'
import { defineConfig } from 'unocss'
export default defineConfig({
presets: [
presetRemToPx(),
// ...other presets
],
})Sử dụng
html
<div class="m-2"></div>css
.m-2 {
margin: 0.5rem;
}css
.m-2 {
margin: 8px;
}Tùy chọn
baseFontSize
- Kiểu:
number - Mặc định:
16
Kích thước font cơ sở để chuyển rem thành px (1rem = n px).