c语言编程笔录

首页 >   > 笔记大全

笔记大全

css设置字体粗细的属性是什么

更新时间:2023-11-13

CSS字体粗细属性

CSS提供了font-weight属性来设置字体的粗细程度,取值可以是数字或关键字。

		font-weight: 400;
		font-weight: bold;
	

数字值表示字体粗细的程度,数字越大,字体越粗。

		font-weight: 100; /*最细*/
		font-weight: 200;
		font-weight: 300;
		font-weight: 400; /*默认*/
		font-weight: 500;
		font-weight: 600;
		font-weight: 700; /*最粗*/
		font-weight: 800;
		font-weight: 900;
	

关键字值有以下几种:

		font-weight: normal; /*默认,与400等效*/
		font-weight: bold; /*粗体,与700等效*/
		font-weight: bolder; /*更粗的字体,相对于父元素更加粗*/
		font-weight: lighter; /*更细的字体,相对于父元素更加细*/
	

除此之外,CSS还可以通过font属性的多个值来设置字体的粗细:

		font: bold 16px/1.5 'Helvetica Neue',Helvetica,Arial,sans-serif;