0

除了 font-size 属性之外,有没有办法控制字体大小?

font-size:11px太大而font-size:10px太小。

还有哪些其他选项可以控制字体大小?

4

4 回答 4

2

您也可以使用 10.5px,但只有在字体渲染器(例如 direct2d/directdraw、gdi)支持像素分数时才会正确渲染

你应该使用 SVG 字体,这显然支持像素分数大小

@font-face {
    font-family: 'myfont';
    src: url('fonts/myfont.svg') format('svg')
        /* other fonts format here */
    ;
}

http://www.fontsquirrel.com/tools/webfont-generator - 这是一个很酷的 webfont 生成器,包括 svg 字体

希望对您有所帮助...

于 2013-06-04T22:09:32.487 回答
1

采用font-size: 10.5px;

其他选项可在 w3 中找到:http: //www.w3schools.com/css/css_font.asp 您可以em用作单位,或指定为%

于 2013-06-04T21:50:16.650 回答
0

您可以尝试ptem代替px

于 2013-06-04T21:50:56.753 回答
0

您可以使用几种不同的字体大小单位。您可以尝试em, px,pt或 a %。也尝试使用十进制值。

您也可以尝试几种命名尺寸;xx-small, x-small, small, medium, large, x-large, xx-large, smaller, 和larger.

来自:http ://www.w3schools.com/cssref/pr_font_font-size.asp

于 2013-06-04T21:54:47.363 回答