css字体设置为bold的是什么意思(设置文本字体粗细font)-冯金伟博客园

本教程操作环境:windows10系统、CSS3&&HTML5版本、Dell G3电脑。

css字体设置为bold的是什么意思

bold是font-weight的属性值。

font-weight 属性设置文本的粗细。

该属性用于设置显示元素的文本中所用的字体加粗。数字值 400 相当于 关键字 normal,700 等价于 bold。每个数字值对应的字体加粗必须至少与下一个最小数字一样细,而且至少与下一个最大数字一样粗。

  • normal 默认值。定义标准的字符。

  • bold 定义粗体字符。

  • bolder 定义更粗的字符。

  • lighter 定义更细的字符。

  • 数值定义由粗到细的字符。400 等同于 normal,而 700 等同于 bold。

示例如下:

<html>
<head>
<style type="text/css">
p.normal {font-weight: normal}
p.thick {font-weight: bold}
p.thicker {font-weight: 900}
</style>
</head>
<body>
<p class="normal">This is a paragraph</p>
<p class="thick">This is a paragraph</p>
<p class="thicker">This is a paragraph</p>
</body>
</html>

登录后复制

输出结果:

css字体设置为bold的是什么意思(设置文本字体粗细font)-冯金伟博客园

(学习视频分享:css视频教程)

以上就是css字体设置为bold的是什么意思的详细内容,更多请关注风君子博客其它相关文章!