background也可以定义网页的背景图片,我们以google的图片问网友背景图片.
学习
网页背景图片
.
<!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.google.com/intl/en_ALL/images/logo.gif') repeat scroll center center; } </style> </head> <body> <p>background也可以定义网页的背景图片,我们以google的图片问网友背景图片.</p> <p>学习<a href="http://www.dreamdu.com/css/property_background/">网页背景图片</a>.</p> </body> </html>