/* repeat */ background-repeat: repeat; /* repeat-x */ background-repeat: repeat-x; /* repeat-y */ background-repeat: repeat-y;
首先是 repeat,这是默认的平铺方式。它会将背景图像在横向和纵向分别重复平铺,直到铺满整个定位区域。
background-image: url("img.jpg"); background-repeat: repeat;
接下来是 repeat-x,这种平铺方式只会在横向上重复平铺背景图像,而不会在纵向上平铺。
background-image: url("img.jpg"); background-repeat: repeat-x;
最后是 repeat-y,这种平铺方式只会在纵向上重复平铺背景图像,而不会在横向上平铺。
background-image: url("img.jpg"); background-repeat: repeat-y;
以上就是 CSS 背景图像平铺方式的介绍。通过不同的平铺方式,大家可以实现各种独特的背景效果,为网页带来更多美观的视觉体验。