跳到内容(1) Cob.com.cn

CodeCoke

CSS2.0中文手册·background-repeat

您的位置:首页>>教程>>CSS2.0中文手册>>background-repeat

background-repeat

版本:CSS1  兼容性:IE4+ NS4+ 继承性:无

语法:

参数:

  1. repeat :  背景图像在纵向和横向上平铺
    no-repeat :  背景图像不平铺
    repeat-x :  背景图像在横向上平铺
    repeat-y :  背景图像在纵向平铺

说明:

示例:

menu { background: url("images/aardvark.gif"); background-repeat: repeat-y; }

p { background: url("images/aardvark.gif"); background-repeat: no-repeat; }