Is it possible to detect the computed font-size of a DOM element, taking into consideration generic settings made elsewhere (In the body tag for example), inherited values, and so on?

A framework-independent approach would be nice, as I'm working on a script that should work standalone, but that is not a requirement of course.

Background: I'm trying to tweak CKEditor's font selector plugin (source here) so that it always shows the font size of the current cursor position (as opposed to only when within a span that has an explicit font-size set, which is the current behaviour).

link|improve this question

"Computed" as in the size in pixels? – Crescent Fresh Dec 23 '09 at 20:31
For the current scenario: pixels only, but in general it would be very nice to be able to get both the defined value (px,pt,em) and the pixel one. – Pekka Dec 23 '09 at 20:46
1  
@Pekka: if it's pixels only you're good. pt, em etc are going to be impossible, only IE's currentStyle can get it right. – Crescent Fresh Dec 23 '09 at 21:03
feedback

2 Answers

up vote 16 down vote accepted

You could try to use the non-standard IE element.currentStyle property, otherwise you can look for the DOM Level 2 standard getComputedStyle method if available :

function getStyle(el,styleProp) {
  var camelize = function (str) {
    return str.replace(/\-(\w)/g, function(str, letter){
      return letter.toUpperCase();
    });
  };

  if (el.currentStyle) {
    return el.currentStyle[camelize(styleProp)];
  } else if (document.defaultView && document.defaultView.getComputedStyle) {
    return document.defaultView.getComputedStyle(el,null)
                               .getPropertyValue(styleProp);
  } else {
    return el.style[camelize(styleProp)]; 
  }
}

Usage:

var element = document.getElementById('elementId');
getStyle(element, 'font-size');

More info:

Edit: Thanks to @Crescent Fresh, @kangax and @Pekka for the comments.

Changes:

  • Added camelize function, since properties containing hypens, like font-size, must be accessed as camelCase (eg.: fontSize) on the currentStyle IE object.
  • Checking the existence of document.defaultView before accessing getComputedStyle.
  • Added last case, when el.currentStyle and getComputedStyle are not available, get the inline CSS property via element.style.
link|improve this answer
This looks great, will try it out. – Pekka Dec 23 '09 at 20:42
3  
Be careful, currentStyle and getComputedStyle are fundamentally different: erik.eae.net/archives/2007/07/27/18.54.15 getComputedStyle is incapable of getting the inherited style, and always computes it as px, whether the value was declared as px or not. – Crescent Fresh Dec 23 '09 at 21:02
Thanks for the caveat. Very good to know. For the job at hand it's fine, as stated above. – Pekka Dec 23 '09 at 21:10
5  
It's actually document.defaultView.getComputedStyle, not window.getComputedStyle (MDC gets it wrong, or considers its own — Mozilla — implementation only). getComputedStyle is specified to be a member of AbstractView, which document.defaultView implements, and there's really no guarantee that window == document.defaultView (neither in specs, nor in practice; in fact, Safari 2.x is a good example of window != document.defaultView). It's interesting that PPK does similar mistake in getstyles article that you linked to (testing defaultView on window). – kangax Dec 23 '09 at 21:46
1  
Sorted. @CMS, if I'm not mistaken you need to edit your answer to point out that currentStyle will accept camelized properties only (e.g. fontSize) while getPropertyValue works with the original form (font-size). – Pekka Dec 24 '09 at 4:13
show 5 more comments
feedback

To overcome the 'em' problem I have quickly written a function, if the font-size in ie is 'em' the function calculates with the body font-size.

        function getFontSize(element){
        var size = computedStyle(element, 'font-size');
        if(size.indexOf('em') > -1){
            var defFont = computedStyle(document.body, 'font-size');
            if(defFont.indexOf('pt') > -1){
                defFont = Math.round(parseInt(defFont)*96/72);
            }else{
                defFont = parseInt(defFont);
            }
            size = Math.round(defFont * parseFloat(size));
        } 
        else if(size.indexOf('pt') > -1){
            size = Math.round(parseInt(size)*96/72)
        }
        return parseInt(size);
    }

    function computedStyle(element, property){
        var s = false;
        if(element.currentStyle){
            var p = property.split('-');
            var str = new String('');
            for(i in p){
                str += (i > 0)?(p[i].substr(0, 1).toUpperCase() + p[i].substr(1)):p[i];
            }
            s = element.currentStyle[str];
        }else if(window.getComputedStyle){
            s = window.getComputedStyle(element, null).getPropertyValue(property);
        }
        return s;
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.