get jquery to return font-size in points

前端 未结 3 690
无人及你
无人及你 2020-12-11 22:12

when I use .css(\'font-size\') in jquery, it returns the value in pixels, is there any way to making it to give it in points ? it\'s because I want to use it in php gd, and

3条回答
  •  有刺的猬
    2020-12-11 22:51

    If your font-size is defined in pt then you may access the fontSize property of element.style as follows...

    var element = document.getElementById('my_element'),
        //return size as it is defined 
        fontSize = element.style.fontSize;
    

提交回复
热议问题