CSS样式背景图片

来源:互联网 发布:申请域名需要多少钱 编辑:程序博客网 时间:2024/05/16 07:21
<!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:transparent url('http://www.baidu.com/img/baidu_logo.gif') repeat scroll center center;
}
</style>
</head>
<body>
<p>学习<a href="http://www.dreamdu.com/css/property_background/">网页背景图片</a>.</p>


</body>
</html>