2.css文字颜色定义,背景色定义是什么

color就代表颜色,我们使用红色 red 为文字颜色. 你可以修改代码使用 blue 蓝色, yellow 黄色等.学习文字的颜色 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html>

color就代表颜色,我们使用红色 red 为文字颜色.

你可以修改代码使用 blue 蓝色, yellow 黄色等.学习文字的颜色


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>定义文字的颜色</title>
<style type="text/css" media="all">

{
color:red;
}
</style>
</head>
<body>
<p>你可以修改代码使用 blue 蓝色, yellow 黄色等.学习<a href="http://www.dreamdu.com/css/property_color/">文字的颜色</a></p>


</body>
</html>


background-color就代表网页的背景颜色,我们使用黄色 yellow 为网页背景.

你可以修改代码使用 red 红色, blue 蓝色等.学习网页背景颜色.

ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>定义网页的背景颜色</title>
<style type="text/css" media="all">
body 
{
background-color:yellow;
}
</style>
</head>
<body>
<p>你可以修改代码使用 red 红色, blue 蓝色等.学习<a href="http://www.dreamdu.com/css/property_background/">网页背景颜色</a>.</p>


</body>
</html>




知秋君
上一篇 2024-07-05 13:48
下一篇 2024-07-05 13:12

相关推荐