日期:2014-02-08 浏览次数:20859 次
本教程一共三个例子:1、如何反复背景图像;2、如何在垂直方向反复背景图像;3、如何在水平方向反复背景图像。
参考爱易网任务室关于CSS背景的理论知识:CSS教程(1):学习CSS背景相关知识。
本例演示如何反复背景图像。
<html>
<head>
<style type="text/css">
body
{
background-image:
url(/i/eg_bg_03.gif);
background-repeat: repeat
}
</style>
</head>
<body>
</body>
</html>
本例演示如何垂直地反复背景图像。加此信息爱易网任务室(Aiyiweb.Com)发布目的是为了防止你变懒!Aiyiweb.Com不主张采集!
<html>
<head>
<style type="text/css">
body
{
background-image:
url(/i/eg_bg_03.gif);
background-repeat: repeat-y
}
</style>
</head>
<body>
</body>
</html>
本例演示如何水平地反复背景图像。
<html>
<head>
<style type="text/css">
body
{
background-image:
url(/i/eg_bg_03.gif);
background-repeat: repeat-x
}
</style>
</head>
<body>
</body>
</html>