梦之都
CSS教程
.
background
示例.
<head>
<title>CSS background 属性示例 -- CSS教程</title> <style type="text/css" media="all"> body { background:url('/images/list-orange.png') repeat-x fixed 0% 20%; position: absolute; height: 5000px; } p { background:url('/images/list-green.png') repeat-x center; padding:5em; } </style> </head> <body> <span>梦之都 <a href="http://www.dreamdu.com/css/">CSS教程</a>.</span> <p><strong><a href="http://www.dreamdu.com/css/property_background/">background</a></strong>示例.</p> </body> </html>