我们知道 background 属性是用于设置背景的,那么 background-repeat 属性怎么使用呢?本篇文章就来给大家介绍一下 background-repeat 属性的使用方法。background-repeat 属性设置是否及如何重复背景图像,也就是定义了图像的平铺模式。默认地,背景图像在水平和垂直方向上重复。background-repeat 属性的设置从原图像开始重复,原图像由 background-image 定义,并根据 background-position 的值放置。注意:背景图像的位置是根据 background-position 属性设置的。如果未规定 background-position 属性,图像会被放置在元素的左上角。
示例代码
- <html>
- <head>
- <style type="text/css">
- body
- {
- background-image: url(img/mouse.png);
- background-repeat: repeat-x;
- }
- </style>
- </head>
- <body>
- </body>
- </html>
效果如下:横向平铺,因为没有设置 background-position,所以图像是从左上角开始重复的。
如果你想要纵向平铺,你可以设置 background-repeat: repeat-y;,从特定位置平铺可以设置 background-position 属性。