11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
|
const body = document.body
|
||
|
|
||
|
const style = window.getComputedStyle(body)
|
||
|
|
||
|
const font_size = style.fontSize
|
||
|
|
||
|
|
||
|
const debug = document.getElementById("debug")
|
||
|
|
||
|
debug.innerHTML = `Font size = ${font_size}`
|