CSS font-weight 属性 | CSS 字体 | CSS教程

返回到:CSS 字体 | CSS教程

属性定义及使用说明

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

默认值:normal
继承:yes
版本:CSS1
JavaScript 语法:object.style.fontWeight=”900″

属性值

描述
normal默认值。定义标准的字符。
bold定义粗体字符。
bolder定义更粗的字符。
lighter定义更细的字符。
100
200
300
400
500
600
700
800
900
定义由细到粗的字符。400 等同于 normal,而 700 等同于 bold。
inherit规定应该从父元素继承字体的粗细。

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性谷歌IE火狐苹果opera
font-weight1.04.01.01.03.5

实例

三段文字设置不同的字体粗细:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>Web176教程(web176.com)</title> 
<style>
p.normal {font-weight:normal;}
p.light {font-weight:lighter;}
p.thick {font-weight:bold;}
p.thicker {font-weight:900;}
</style>
</head>

<body>
<p class="normal">This is a paragraph.</p>
<p class="light">This is a paragraph.</p>
<p class="thick">This is a paragraph.</p>
<p class="thicker">This is a paragraph.</p>
</body>

</html>

作者:terry,如若转载,请注明出处:https://www.web176.com/cssprop/5701.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2022年4月21日 上午11:56
下一篇 2022年4月21日 下午3:57

相关推荐

发表回复

登录后才能评论