在 CSS 中操纵绝对和相对前端大小
Manipulate absolute and relative front-size in CSS
什么定义了绝对和相对字体大小背后的算法?
例如:font-size: smaller
或 font-size: small
我知道这个 relative/absolute 字体大小声明使字体变小了一定百分比,但是这个百分比是什么定义的,我该如何操作它?
我知道可以用不同的方式实现相同的结果。但我很想通过控制最终结果在我的 CSS 中使用 this。
还找不到任何解释。
https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
I know that this relative/absolute font-size declaration makes the font smaller by a certain percentage, ...
不,不是。比率不同。请参阅 https://www.w3.org/TR/css-fonts-4/#absolute-size-mapping 中的 table。浏览器可能会根据需要在每种字体的基础上调整它们认为合适的值。
how can I manipulate it?
你不能。跳过指定的字体大小,只需根据需要指定像素大小、em/rem 比率或百分比值。
什么定义了绝对和相对字体大小背后的算法?
例如:font-size: smaller
或 font-size: small
我知道这个 relative/absolute 字体大小声明使字体变小了一定百分比,但是这个百分比是什么定义的,我该如何操作它?
我知道可以用不同的方式实现相同的结果。但我很想通过控制最终结果在我的 CSS 中使用 this。
还找不到任何解释。 https://developer.mozilla.org/en-US/docs/Web/CSS/font-size
I know that this relative/absolute font-size declaration makes the font smaller by a certain percentage, ...
不,不是。比率不同。请参阅 https://www.w3.org/TR/css-fonts-4/#absolute-size-mapping 中的 table。浏览器可能会根据需要在每种字体的基础上调整它们认为合适的值。
how can I manipulate it?
你不能。跳过指定的字体大小,只需根据需要指定像素大小、em/rem 比率或百分比值。