|
You are here > Web Design > Web Accessibility > 44.5. Letter Spacing
Letter Spacing
Partially sighted users can find close letter spacing difficult to read. Where possible, spacing should be wide.
This can be controlled with the 'letter-spacing' CSS attribute, although the standard letter spacing of text in HTML is generally sufficient for most users.
The letter-spacing property increases or decreases the white space between characters.
For example:
p
{
letter-spacing: 12px
}
Note: Negative values are allowed.
p
{
letter-spacing: -0.5px
}
Line Spacing >>>
|