1、首先要了解css中是如何控制
字体的。\x0d\x0afont:在一个声明中设置所有字体属性;\x0d\x0afont有以下几个属性:\x0d\x0a\x0d\x0afont-style:字体样式\x0d\x0a\x0d\x0afont-variant:字体异体\x0d\x0afont-weight:字体粗细\x0d\x0afont-size/line-height:字体大小/行高\x0d\x0afont-family:字体系列(比如宋体、
黑体等)\x0d\x0a2、知道这些之后,那"设定字体为
微软雅黑Bold字体"就可以这么写:\x0d\x0afont-family:"微软雅黑"font-weight:bold\x0d\x0a但是需要注意一点,通常我们使用中文字体的时候,都会使用的英文名称,而不是直接使用中文;而且,也会使用简写的形式;如下:\x0d\x0afont:bold12px/1.5em"MicrosoftYaHei"控制字体类型的CSS属性为:font-family,让a标签里的文字变成黑体,写法如下:
.header_b a {color:blackfont-family:"simhei"} 黑体
.header_b a {color:blackfont-family:"STHeiti"} 华文黑体
.header_b a {color:blackfont-family:Microsoft YaHei} 微软雅黑
或者按下面的写法也可以:
.header_b a {color:blackfont-family:"黑体"}
.header_b a {color:blackfont-family:"微软雅黑"}
评论列表(0条)