Unit (rem)

The Molla uses the rem unit instead of the px (pixel) as its unit of measure.

Rem

1rem = 10px

Ex: With pixel:

h1 {
    font-size: 32px;
}

With rem:

h1 {
    font-size: 3.2rem;
}

Last updated