梦之都
CSS教程
,
background-image
示例,定义背景图片.
p段落中没有背景图片
div中有背景图片
<!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-image 属性示例</title> <style type="text/css" media="all"> body { background-image:url('/images/html_table.png'); } p { background-image:none; } div { width:200px; height:200px; background-image:url('/images/list-orange.png'); } </style> </head> <body> <p>梦之都
CSS教程
,<strong>
background-image
</strong>示例,定义背景图片.</p> <p>p段落中没有背景图片</p> <div>div中有背景图片</div> </body> </html>