CSS中设定字体如何设定为微软雅黑Bold字体?

CSS中设定字体如何设定为微软雅黑Bold字体?,第1张

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:"微软雅黑"}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11120012.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-13
下一篇 2023-05-13

发表评论

登录后才能评论

评论列表(0条)

保存