css字体如何加粗-LMLPHP

本文操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。

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

属性说明:

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

所有主流浏览器都支持 font-weight 属性。

属性可能值:

css字体如何加粗-LMLPHP

示例:

<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字体如何加粗-LMLPHP

【推荐学习:css视频教程

以上就是css字体如何加粗的详细内容,更多请关注Work网其它相关文章!

09-15 13:06