我们知道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属性。
本篇文章到这里就全部结束了,更多精彩内容大家可以关注php中文网的其他相关栏目教程!!!
以上是background-repeat 怎么使用的详细内容。更多信息请关注PHP中文网其他相关文章!