CSS rem Unit

The rem unit scales relative to the root font size.

Preview

Code

<style>
html{
font-size:16px;
}

p{
font-size:2rem;
}
</style>

<p>This text uses rem units</p>

More CSS Units Examples (8)