css如何设置字体颜色 css如何设置字体颜色有哪些

主机教程 建站分享 2年前 (2022-10-20) 226次浏览

文章摘要:css如何设置字体颜色 css如何设置字体颜色有哪些

在css中设置字体颜色的方法:1.创建p标签;2.使用color属性设置字体颜色; 在css中设置字体颜色的方 […]

在css中设置字体颜色的方法:1.创建p标签;2.使用color属性设置字体颜色;

在css中设置字体颜色的方法

1.首先,在页面中创建两个p标签,并添加文字用于对比;

<!DOCTYPE html>

<html>

<head>

  <meta charset="utf-8" />

  <style></style>

</head>

<body>

 <p class="btn">红色字体</p>

 <p class="nav">蓝色字体</p>

</body>

</html>

2.p标签创建好后,使用color属性即可设置字体的颜色;

<!DOCTYPE html>

<html>

<head>

  <meta charset="utf-8" />

  <style>

.btn{

 color:red;

}

.nav{

 color:blue;

}

  </style>

</head>

<body>

 <p class="btn">红色字体</p>

 <p class="nav">蓝色字体</p>

</body>

</html>

效果:


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:css如何设置字体颜色 css如何设置字体颜色有哪些
文章链接:http://www.7966.org/post/12382.html
转载请注明出处

喜欢 (0)