大背景

来源:互联网 发布:美国网络实名制 编辑:程序博客网 时间:2024/04/19 17:29

html如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Sky Background Example</title>
<style type="text/css">
body {
 padding: 0;
 margin: 0;
 background: #73ADD7 url(images/gradient.gif) repeat-x;
 color: #666;
}
#page {
 background: url(images/sky.jpg) no-repeat center top;
 width: 100%;
 display: table;
}
#content {
 width: 852px;
 margin: 205px auto 0;
 background: #fff;
 border: solid 1px #ccc;
 padding: 20px;
}
h1 {
 margin: 0;
 padding: 0;
}
</style>
</head>

<body>
<div id="page">

 <div id="content">
  <h1><a href="http://www.webdesignerwall.com/tutorials/how-to-css-large-background/">How to: CSS Large Background</a></h1>
  <p><a href="http://www.webdesignerwall.com/tutorials/how-to-css-large-background/"></a> Tutorial by <a href="http://www.webdesignerwall.com">Web Designer Wall</a></p>
  <p style="padding-bottom: 800px"> </p>
 </div>

</div>
</body>
</html>