Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/rem-root-font-size-restyle-1.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Test: Test for rem units on the root element</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="match" href="rem-root-font-size-restyle-1-ref.html">
<style>
:root {
font-size: 2rem;
}
div {
width: 10rem;
height: 10rem;
background: green;
}
</style>
<div></div>
<script>
document.documentElement.offsetTop;
// Force a style recalc.
document.documentElement.style.color = "green";
</script>