CSS – Web安全字体参考
字体组合
CSS3采用了字体组合技术。在这里,如果浏览器不支持第一个字体,则尝试使用下一个字体。
衬线字体
| Font family | Normal | bold |
|---|---|---|
| Georgia, serif |
This is normal text. |
This is normal text. |
| “Times New Roman”, Times, serif |
This is normal text. |
This is normal text. |
| “Palatino Linotype”, Palatino, “Book Antiqua”, serif |
This is normal text. |
This is normal text. |
无衬线字体
| Font family | Normal | bold |
|---|---|---|
| Arial, Helvetica, sans-serif |
This is normal text. |
This is normal text. |
| “Arial Black”, Gadget, sans-serif |
This is normal text. |
This is normal text. |
| Impact, Charcoal, sans-serif |
This is normal text. |
This is normal text. |
| Impact, Charcoal, sans-serif |
This is normal text. |
This is normal text. |
| Tahoma, Geneva, sans-serif |
This is normal text. |
This is normal text. |
| “Trebuchet MS”, Helvetica, sans-serif |
This is normal text. |
This is normal text. |
| Verdana, Geneva, sans-serif |
This is normal text. |
This is normal text. |
等宽字体
| Font family | Normal | bold |
|---|---|---|
| Courier, monospace |
This is normal text. |
This is normal text. |
| “Courier New”, Courier, monospace |
This is normal text. |
This is normal text. |
| “Lucida Console”, Monaco, monospace |
This is normal text. |
This is normal text. |
草书字体
| Font family | Normal | bold |
|---|---|---|
| “Comic Sans MS”, cursive |
This is normal text. |
This is normal text. |
| “Courier New”, Courier, monospace |
This is normal text. |
This is normal text. |
| “Lucida Console”, Monaco, monospace |
This is normal text. |
This is normal text. |
极客教程