CFLib.org – Common Function Library Project

CssPtScale(size)

Last updated December 23, 2002

author

Joshua Miller

Version: 1 | Requires: CF5 | Library: UtilityLib

Description:
CssPtScale increases the point size of text by one point for browsers other than Microsoft Internet Explorer. Other browsers seem to render points at a smaller scale than IE, so to keep consistancy when using points, use this function to auto-size your text accordingly.

Return Values:
Returns a number along with the string

Example:

<cfoutput>#cssPtScale(10)#</cfoutput>

Parameters:

Name Description Required
size Size to use. Yes

Full UDF Source:

/**
 * CssPtScale increases the point size of text by one point for browsers other than Microsoft Internet Explorer.
 * 
 * @param size      Size to use. (Required)
 * @return Returns a number along with the string 
 * @author Joshua Miller (josh@joshuasmiller.com) 
 * @version 1, December 23, 2002 
 */
function CssPtScale(size){
    if (http_user_agent DOES NOT CONTAIN "MSIE") return "#val(size+1)#pt";
    else return "#size#pt";
}

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson