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">
p
{
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>

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/68929.html