css 中给字体加粗可以通过 font-weight 属性,默认值 normal,加粗值 bold,还支持更轻(lighter)、更重(bolder)、100-900 数值(400 为正常)。
在 CSS 中给字体加粗
在 CSS 中给字体加粗非常简单,可以使用 font-weight
属性。
HTML 代码
<code class="html"><p>这是普通文本</p> <p><strong>这是加粗文本</strong></p></code>
登录后复制
CSS 代码
<code class="<a style='color:#f60; text-decoration:underline;' href=" https: target="_blank">css">p { font-weight: normal; } strong { font-weight: bold; }</code>
登录后复制
在这个示例中,normal
是字体的默认权重,而 bold
是加粗权重。
除了 normal
和 bold
之外,font-weight
属性还支持以下值:
- lighter:比当前字体权重更轻
- bolder:比当前字体权重更重
- 100:最轻的字体权重
- 200 – 900:介于轻和重的字体权重之间(其中 400 是正常权重)
示例
要将文本加粗为中等粗细,可以使用以下 CSS:
<code class="css">p { font-weight: 600; }</code>
登录后复制
浏览器支持
font-weight
属性得到所有现代浏览器的良好支持。
以上就是css中怎么给字体加粗的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:城南北边,转转请注明出处:https://www.dingdanghao.com/article/405726.html