Skip to content

Rem zu px Preset

Konvertiert rem zu px für alle Utilities.

Quellcode

Installation

bash
pnpm add -D @unocss/preset-rem-to-px
bash
yarn add -D @unocss/preset-rem-to-px
bash
npm install -D @unocss/preset-rem-to-px
bash
bun add -D @unocss/preset-rem-to-px
ts
import presetRemToPx from '@unocss/preset-rem-to-px'
import { defineConfig } from 'unocss'

export default defineConfig({
  presets: [
    presetRemToPx(),
    // ...andere Presets
  ],
})

Verwendung

html
<div class="m-2"></div>
css
.m-2 {
  margin: 0.5rem;
}
css
.m-2 {
  margin: 8px;
}

Optionen

baseFontSize

  • Typ: number
  • Standard: 16

Die Basis-Schriftgröße zum Konvertieren von rem zu px (1rem = n px).

Released under the MIT License.