标签:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>CSS奇特用法:为IMG设置背景图片</title> <style type="text/css"> div { background: url(‘http://www.codefans.net//jscss/demoimg/201312/blur.jpg‘) no-repeat top left; width:232px;height: 200px; } img {display:block;background: url(‘http://www.codefans.net//jscss/demoimg/201312/parallax.gif‘) no-repeat bottom left; padding: 93px 100px 75px 100px; } </style> </head> <body> <div> <img src="http://www.codefans.net//jscss/demoimg/201312/Anime_runner.gif" alt="runner" /> </div> </body> </html>
----转载
标签:
原文地址:http://www.cnblogs.com/CodeDeath/p/4582535.html