> For the complete documentation index, see [llms.txt](https://kitisummus.gitbook.io/molla/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kitisummus.gitbook.io/molla/things-to-know/unit.md).

# Unit (rem)

## Rem

{% hint style="info" %}
1rem = 10px
{% endhint %}

Ex:\
With pixel:

```
h1 {
    font-size: 32px;
}
```

With rem:

```
h1 {
    font-size: 3.2rem;
}
```

##
