diff --git a/items/2.1.6.html b/items/2.1.6.html index 77c246b..b00503b 100644 --- a/items/2.1.6.html +++ b/items/2.1.6.html @@ -1,7 +1,6 @@ -

Acronyms such as CIA and PLO are frequent in some texts. So are abbreviations such as CE and BCE or AD and BC. The normal value for letterspacing these sequences of small or full caps is 5% to 10% of the type size.

-

Many typographers like to letterspace all strings of numbers as well, Spacing is essential for rapid reading of long, fundamentally meaningless strings such as serial numbers, and is helpful even for shorter strings such as phone numbers and dates.”

+

Many typographers like to letterspace all strings of numbers as well. Spacing is essential for rapid reading of long, fundamentally meaningless strings such as serial numbers, and is helpful even for shorter strings such as phone numbers and dates.”

Letter spacing in CSS is achieved with the aptly named letter-spacing property. To letter space abbreviations at 10% of the type size you could wrap the abbreviations in <abbr> tags and apply a CSS rule such as:

@@ -15,4 +14,4 @@ $replace = '<abbr>$1</abbr>'; $text = preg_replace($search,$replace,$text); -

This function looks for sequences of 3 or more uppercase letters or numbers, such as CSS, HTML and W3C, and wraps an <abbr> tag around them.

\ No newline at end of file +

This function looks for sequences of 3 or more uppercase letters or numbers, such as CSS, HTML and W3C, and wraps an <abbr> tag around them.