|
|
|
|
|
|
| |
The font-size-adjust property (CSS Reference)
Introduction
The font-size-adjust property is used to specify a common
value for all font-types, which are currently used for a specific element.
Note: Please check if the browser you're targeting supports this property yet. Many don't, at the time of
publishing.
Example
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>font-size-adjust
Demonstration</title>
</head>
<hr/>
<span style="font-size-adjust:none">Some
text here</span>
<span style="font-size-adjust:.58">Some text
here</span>
<body>
</body>
</html>
Values
|
Name:
|
Description:
|
|
none
|
This value is used to allow each font to use his own
values.
|
|
number
|
The number value is used to specify a common aspect value
for all fonts in a list.
|
|
|
|
|
|
|
|
|