const fontSize = window.getComputedStyle(document.getElementById("yourFontSizeinCSS")).fontSize; const size = parseFloat(fontSize); document.getElementById("one").style.fontSize = `${size * 3}px`;