代码示例:(标识:eg_css3_background-size)
<!DOCTYPE html>
<html>
<head>
<style> 
body
{
background:url(/static/demo/images/bg_flower.gif);
background-size:63px 100px;
-moz-background-size:63px 100px; /* 老版本的 Firefox */
background-repeat:no-repeat;
padding-top:80px;
}
</style>
</head>

<body>
<p>上面是缩小的背景图片。</p>

<p>原始图片:<img src="/static/demo/images/bg_flower.gif" alt="Flowers"></p>

</body>
</html>
运行结果: