Using Mootools Element.Dimensions I can get the computed size, in pixels, of any element. However, I can find no way of telling whether an element has been sized using pixel
In IE, element.currentStyle.width. In many other browsers, getComputedStyle(element, null).getPropertyValue('width').
element.currentStyle.width
getComputedStyle(element, null).getPropertyValue('width')