|
通过 CSS3,Web 设计师再也不必被迫使用“web-safe”字体了。
在 CSS3 之前,web 设计师必须使用已在用户计算机上安装好的字体。
通过 CSS3,web 设计师可以使用他们喜欢的任意字体。
当您您找到或购买到希望使用的字体时,可将该字体文件存放到 web 服务器上,它会在需要时被自动下载到用户的计算机上。
您“自己的”的字体是在 CSS3 @font-face 规则中定义的。
使用您需要的字体
在新的 @font-face 规则中,您必须首先定义字体的名称(比如 myFirstFont),然后指向该字体文件。
如需为 HTML 元素使用字体,请通过 font-family 属性来引用字体的名称 (myFirstFont):
简单实例- <style>
- @font-face
- {
- font-family: myFirstFont;
- src: url('Sansation_Light.ttf'),
- url('Sansation_Light.eot'); /* IE9+ */
- }
- div
- {
- font-family:myFirstFont;
- }
- </style>
复制代码 完整示例:- <!DOCTYPE html>
- <html>
- <head>
- <style>
- @font-face
- {
- font-family: myFirstFont;
- src: url('/example/css3/Sansation_Light.ttf')
- ,url('/example/css3/Sansation_Light.eot'); /* IE9+ */
- }
- div
- {
- font-family:myFirstFont;
- }
- </style>
- </head>
- <body>
- <div>
- With CSS3, websites can finally use fonts other than the pre-selected "web-safe" fonts.
- </div>
- <p><b>注释:</b>Internet Explorer 9+ 支持新的 @font-face 规则。Internet Explorer 8 以及更早的版本不支持新的 @font-face 规则。</p>
- </body>
- </html>
复制代码 |
|