I have a textarea whose line-height is set to "normal". However, I can still get the actual pixel value in FireFox:
// firefox
>>> $("#post_body").css('line-height')
"19.1167px"
Whereas I cannot in Chrome:
// chrome
>>> $("#post_body").css('line-height')
"normal"
How can I get the actual pixel line height in Chrome?