BlaBla.cn 网页教程与代码的中文站点
最近更新日期:2007-04-30 作者:布啦布啦 参考来源:www.BlaBla.cn 布啦布啦网页教程与代码
网站首页
>
CSS 教程与实例代码
>
CSS 代码实例
>
CSS 背景属性实例
> 背景重复属性
编辑文本后点击显示结果
Blabla.cn
<html> <head> <title>背景重复 background-repeat</title> <style type="text/css"> body {background-image:url(../images/css_tutorials/background.jpg); background-repeat:repeat-y} </style> </head> <body> <p>这个HTML使用了CSS的background-repeat属性,使背景图片竖向重复。<p> <p>常用的background-repeat的属性值有: repeat-x(横向重复),repeat-x(横向重复), no-repeat(不重复)。</p> <p>background-repeat属性要和background-image一起用。</p> </body> </html>
© 2005-2008 BlaBla.cn 版权所有