梦之都
CSS教程
.
background
示例.
<!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>CSS background 属性示例</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>梦之都
CSS教程
.</span> <p><strong>
background
</strong>示例.</p> </body> </html>