梦之都
CSS教程
,
background-image
示例,定义背景图片.
p段落中没有背景图片
div中有背景图片
<head>
<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>梦之都 <a href="http://www.dreamdu.com/css/">CSS教程</a>,<strong><a href="http://www.dreamdu.com/css/property_background-image/">background-image</a></strong>示例,定义背景图片.</p> <p>p段落中没有背景图片</p> <div>div中有背景图片</div> </body> </html>