本文的目的是使用CSS设置 font-size-adjust属性。
方法: font-size-adjust属性设置小写字母的大小相对于大写字母的当前字体大小。大写字母和小写字母之间的大小差异称为Aspect Value 。如果第一个指定字体不可用,浏览器可能会选择第二个指定字体,这可能会导致重大差异。 font-size-adjust属性允许开发人员禁用或修改此行为,因为设计用于小屏幕的网页不需要它。
句法 :
font-size-adjust: number|none|initial|inherit;
注意:浏览器将根据 font-size-adjust 属性的指定值设置纵横比值,而忽略 font-family。
例子:
HTML
GeeksForGeeks (Times font (10px), which
is hard to read in small sizes)
GeeksForGeeks (Verdana font (10px), which
has relatively large lowercase letters)
GeeksForGeeks (10px Times, but now
adjusted to the same aspect ratio
as the Verdana)
输出: