WEB标准字体常规定义_CSS/HTML
来源:动视网
责编:小采
时间:2020-11-27 18:54:26
WEB标准字体常规定义_CSS/HTML
WEB标准字体常规定义_CSS/HTML:web标准推荐如下字体定义方法:body { font-family : Lucida Grande, Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif; }* 字体按照所列出的顺序选用。如果用户的计算机含有Lucida Grande字体,文档将被指定为Lucida Grande
导读WEB标准字体常规定义_CSS/HTML:web标准推荐如下字体定义方法:body { font-family : Lucida Grande, Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif; }* 字体按照所列出的顺序选用。如果用户的计算机含有Lucida Grande字体,文档将被指定为Lucida Grande

web标准推荐如下字体定义方法:
body { font-family : "Lucida Grande", Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif; }
* 字体按照所列出的顺序选用。如果用户的计算机含有Lucida Grande字体,文档将被指定为Lucida Grande。没有的话,就被指定为Verdana字体,如果也没有Verdana,就指定为Lucida字体,依此类推。
* Lucida Grande字体适合Mac OS X;
* Verdana字体适合所有的Windows系统;
* Lucida适合UNIX用户
* "宋体"适合中文简体用户;
* 如果所列出的字体都不能用,则默认的sans-serif字体能保证调用。
WEB标准字体常规定义_CSS/HTML
WEB标准字体常规定义_CSS/HTML:web标准推荐如下字体定义方法:body { font-family : Lucida Grande, Verdana, Lucida, Arial, Helvetica, 宋体,sans-serif; }* 字体按照所列出的顺序选用。如果用户的计算机含有Lucida Grande字体,文档将被指定为Lucida Grande