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