字体的颜色怎么设置

发布网友 发布时间:2022-03-25 19:49

我来回答

1个回答

热心网友 时间:2022-03-25 21:18

设置样式例如字体大小、颜色、字体等需要用到css,建议查看相关内容,举个栗子

1
2
3
4
5
6
7
8
9
10
11
12
13
14

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TEST</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
p{color:red;}
</style>
</head>
<body>
<p>我是红色,因为上面style中指明了p标签里的颜色是红色</p>
<p>我是红色,因为上面style中指明了p标签里的颜色是红色;<span style="color:green;">但是我在span里,span的颜色设置的是绿色</span></p>
<p style="color:#0000ff">我虽然在P里,但是这里的P被设置成了蓝色(#0000ff或者用blue)。</p>
</body>
</html>

效果
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com