blob: eb7744c6370168e839e20c6f1bf9007c97226b95 (
plain)
1
2
3
4
5
6
7
8
|
<!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>
|