在窗户中使用Lucida Grande

Utk*_*maz 6 css fonts

我想在我的Windows网站上使用Lucida Grande.

怎么做 ?我怎么能把它嵌入我的网页?

谢谢

rob*_*les 17

我只是在找同样的东西,偶然发现了这篇文章:

http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/

它基本上建议Lucida Sans Unicode用于普通文本和Lucida Sans粗体和斜体文本.

body {
    font-family: "Lucida Sans Unicode";
}
b, strong, i {
    font-family: "Lucida Sans";
}
Run Code Online (Sandbox Code Playgroud)

来自链接网站的完整代码示例(包括后备字体):

body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

strong, em, b, i {
    font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
Run Code Online (Sandbox Code Playgroud)


Rus*_*ias 10

这是我过去使用的字体堆栈:

font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;

  • 值得注意的是,尽管此堆栈在字体堆栈的构成上“肯定”是正确的,但实际上大多数Windows用户都不会安装Lucida Grande。因此,在此示例中,大多数Windows用户将看到Tahoma或Verdana。 (2认同)