html中设置字体的属性:font、font-family、font-size、font-style、font-variant、font-weight、“@font-face”、font-size-adjust、font-stretch。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
字体属性定义字体,加粗,大小,文字样式。
html中设置字体的属性
扩展资料:
在HTML/CSS中,有两种类型的字体系列名称:
通用字体系列 - 拥有相似外观的字体系统组合(如 "Serif" 或 "Monospace")
特定字体系列 - 一个特定的字体系列(如 "Times" 或 "Courier")
GeorgiaSerif字体中字符在行的末端拥有额外的装饰Sans-serifArial
Verdana"Sans"是指无 - 这些字体在末端没有额外的装饰MonospaceCourier New
Lucida Console所有的等宽字符具有相同的宽度
font-family 属性应该设置几个字体名称作为一种"后备"机制,如果浏览器不支持第一种字体,他将尝试下一种字体。
注意: 如果字体系列的名称超过一个字,它必须用引号,如Font Family:"宋体"。
多个字体系列是用一个逗号分隔指明:
p{font-family:"Times New Roman", Times, serif;}
下面是一些常用的字体组合,通用的字体系列。
Serif 字体
This is a heading
This is a paragraph
"Palatino Linotype", "Book Antiqua", Palatino, serifThis is a heading
This is a paragraph
"Times New Roman", Times, serifThis is a heading
This is a paragraph
sans - serif字体
This is a heading
This is a paragraph
Arial Black, Gadget, sans-serifThis is a heading
This is a paragraph
"Comic Sans MS", cursive, sans-serifThis is a heading
This is a paragraph
Impact, Charcoal, sans-serifThis is a heading
This is a paragraph
"Lucida Sans Unicode", "Lucida Grande", sans-serifThis is a heading
This is a paragraph
Tahoma, Geneva, sans-serifThis is a heading
This is a paragraph
"Trebuchet MS", Helvetica, sans-serifThis is a heading
This is a paragraph
Verdana, Geneva, sans-serifThis is a heading
This is a paragraph
Monospace 字体
This is a heading
This is a paragraph
"Lucida Console", Monaco, monospaceThis is a heading
This is a paragraph
(学习视频分享:css视频教程)
以上就是html中设置字体的属性有哪些的详细内容,更多请关注自由互联其它相关文章!