css怎么把字体加粗加大CSS字体加粗总结

相关属性:

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

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

属性值:

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

  • bold 定义粗体字符。

  • bolder 定义更粗的字符。

  • lighter 定义更细的字符。

  • inherit 规定应该从父元素继承字体的粗细。

代码示例:

<html>
<head>
<style type="text/css">
p.normal {font-weight: normal}
p.thick {font-weight: bold;font-size:250%;}
p.thicker {font-weight: 900;font-size:200%;}
</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>

实现效果:

4091640c1186a3121b0f6c56256eab6.png

相关推荐:CSS教程

以上就是css怎么把字体加粗加大的详细内容,更多请关注风君子博客其它相关文章!

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注