使用background-repeat:no-repeat 属性可以使背景只显示一次,background-size: 属性可以改变背景图像的大小。
实例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
body{
background-image:url(img/R-C.jpeg);
background-size:20% 150%;
background-repeat:no-repeat;
}
</style>
</head>
<body>
<h1>背景显示一次实例</h1>
<h1>Hello World!</h1>
<p>这个背景图像只显示一次。</p>
<body>
</html>
运行效果:
评论