font-size-adjust版本:CSS2  兼容性:无 继承性:有
语法:
font-size-adjust : none | number
取值:
none :默认值。允许字体序列中每一字体遵守它的自己的尺寸
number :为字体序列中所有字体强迫指定同一尺寸
说明:
设置或检索用于对象中文本的字体名称序列是否强制使用同一尺寸。
对应的脚本特性为 fontSizeAdjust
示例:
p { font-family: arial, courier; font-size-adjust: none; }
p { font-family: verdana, courier; font-size-adjust: .56; }