1、font-family设置字体类型
<style>
h1{
font-family:“黑体”;
}
p{
font-family:“宋体”,"Lucida Console"; /*优先级从左到右*/
}
</style>
注意:font-family:"\5FAE\8F6F\96C5\9ED1" 表示微软雅黑。最好用这种方式,可以通过escape()函数获得Unicode编码
2、font-family设置字体系列(一般放在最后)
衬线体:字体有一些修饰的地方让字体变得美观
非衬线体:边角无修饰
3、font-weight设置字体的粗细
font-weight的属性值:normal(400)、bold、bolder、lighter、100~900(整百),有继承性
<style>
.dese {
font-fweight:700; /*无单位*/
}
</style>
4、font-style设置字体的风格
normal:默认值
italic:斜体的字体样式显示
oblique:让文字倾斜显示
p{ font-style:italic;}
5、font字体合写
p{
font:字体样式 字体加粗 字体大小 字体类型;
}
6、设置字符的间距和文字的间距
lletter-spacing:字间距(默认normal)
.lletter-spacing{
lletter-spacing: 10px;
}
.word-spacing{
word-spacing:20px;仅对英文及空格有影响,对中文无影响
}
7、行高
css中基线与基线之间的距离
8、text-decoration属性值
none:默认值
underline:下划线。
overline:上划线。
line-through:删除线
9、text-indent属性用于设置段落首行文本的缩进,只能设置于块级标签
10、white-space属性值
normal:常规(默认值),文本中的空格、空行无效,满行(到达区域边界)后自动换行。
pre:预格式化,按文档的书写格式保留空格、空行原样显示。
nowrap:空格空行无效,强制文本不能换行,除非遇到换行标