Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<div style="font: message-box">
System font text.
</div>
<script>
let el = document.querySelector("div");
el.style.fontSize = (2 * parseFloat(getComputedStyle(el).fontSize)) + "px";
</script>