revisedHeight(size: number, excludeMargin?: boolean): number {
        if (this.jq.css('box-sizing') != 'border-box')
            size -= this.padBorderHeight();
        if (size > 0 && excludeMargin)
            size -= this.marginHeight();