css 设置图片背景平铺方式

css设置背景图片平铺方式

repeat:沿水平竖直两个方向平铺,这也是默认值

no-repeat:不平铺,即只显示一次

repeat-x:只沿水平方向平铺

repeat-y:只沿竖直方向平铺

 .headerh{
            height: 8%;
            background:url("../public/images/33.jpg") repeat center;
        }

猜你喜欢

转载自blog.csdn.net/ppwwp/article/details/82666814