CSS的字体样式

举报
牛哄哄的柯南 发表于 2021/05/26 16:01:02 2021/05/26
【摘要】 CSS的字体样式 字体样式font-family属性font-size属性font-style属性font-weight属性font属性 字体样式 属性名含义举例font-family设置字体类型font-family:“隶书”font-size设置字体大小font-size:12pxfont-style设置字体风格font-style:italic...

字体样式

属性名 含义 举例
font-family 设置字体类型 font-family:“隶书”
font-size 设置字体大小 font-size:12px
font-style 设置字体风格 font-style:italic
font-weight 设置字体的粗细 font-weight:bold
font 设置所有字体属性 font:italic bold 36px “宋体”

font-family属性

.p1{ font-family: "隶书";}
.p2{font-family: "黑体"; }
.p3{ font-family: "Arial Black"; }

  
 
  • 1
  • 2
  • 3

样例代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style> .p1{ font-family: "隶书";} .p2{font-family: "黑体"; } .p3{ font-family: "Arial Black"; }
		</style>
		<title></title>
	</head>
	<body>
		<h1>不加修饰的一级标题</h1>
		<h1 class="p1">一级标题隶书</h1>
		<h1 class="p2">一级标题黑体</h1>
		<h1 class="p3">一级标题Arial Black</h1>
	</body>
</html>


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

效果截图:
在这里插入图片描述

font-size属性

单位:px(像素)

.p1{font-size: 10px; }

.p2{font-size: 20px;}

.p3{font-size: 30px;}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5

样例代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style> .p1{font-size: 10px; } .p2{font-size: 20px;} .p3{font-size: 30px;}
		</style>
		<title></title>
	</head>
	<body>
		<h1>这是正常的一级标题</h1>
		<h1 class="p1">这是10px的一级标题</h1>
		<h1 class="p2">这是20px的一级标题</h1>
		<h1 class="p3">这是30px的一级标题</h1>
	</body>
</html>


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

效果截图:
在这里插入图片描述

font-style属性

normal、italic和oblique

.p1{font-style: normal; } .p2{font-style: italic;}

.p3{font-style: oblique;}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5

样例代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style> .p1{font-style: normal; } .p2{font-style: italic;} .p3{font-style: oblique;}
		</style>
		<title></title>
	</head>
	<body>
		<h1>这是正常的一级标题</h1>
		<h1 class="p1">这是normal的一级标题</h1>
		<h1 class="p2">这是italic的一级标题</h1>
		<h1 class="p3">这是oblique的一级标题</h1>
	</body>
</html>


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

效果截图:
在这里插入图片描述

font-weight属性

normal 默认值,定义标准的字体。
bold 粗体字体。

.p1{font-weight: normal; } .p2{font-weight: bold ;}

  
 
  • 1
  • 2
  • 3

样例代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style> .p1{font-weight: normal; } .p2{font-weight: bold ;} </style>
		<title></title>
	</head>
	<body>
		<p>这是正常的字体</p>
		<p class="p1">这是normal的字体</p>
		<p class="p2">这是bold的字体</p>
	</body>
</html>


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

效果截图:
在这里插入图片描述

font属性

字体属性的顺序:字体风格→字体粗细→字体大小→字体类型

.p1{font:oblique bold 12px "楷体"; }

  
 
  • 1

样例代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style> .p1{font:oblique bold 12px "楷体"; } </style>
		<title></title>
	</head>
	<body>
		<p>这是正常的字体</p>
		<p class="p1">这是font:oblique bold 12px "楷体";的字体</p> </body>
</html>



  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

效果截图:
在这里插入图片描述
写作不易,读完如果对你有帮助,感谢点赞支持!
如果你是电脑端,看见右下角的“一键三连”了吗,没错点它[哈哈]
在这里插入图片描述

加油!

共同努力!

Keafmd

文章来源: keafmd.blog.csdn.net,作者:牛哄哄的柯南,版权归原作者所有,如需转载,请联系作者。

原文链接:keafmd.blog.csdn.net/article/details/109346863

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。