Access computed value of a CSS property?
Is there a way using jQuery (or a plugin) to fetch the computed value of a css property? Specifically, I'm interested in getting the computer value (ideally in pixels, but any unit will do) of an element that hasn't had its line-height explicitly set with a CSS declaration. Thus, calling $(element).css('line-height') in jQuery returns the string "normal" which is of little value (at least to me in this context). Can I get a numeric value that the browser has elected to use for "normal" somehow?