是否有 CSS 方法可以在特定位置停止重复的背景图像?
HTML:
<div class="container bgimage">
This is the content
</div>
CSS:
.container
{
height:100%;
}
.bgimage
{
background-image:url('bg.png');
background-repeat:repeat;
}
我想在位置 0 水平和垂直重复图像,并在重复图像达到垂直时停止重复height: 400px
,例如 amax-height
但仅用于背景并且不缩小.container
DIV。
.container
我知道如何使用渐变背景来做到这一点,但是当DIV 甚至高于 400 像素时,是否还有重复图像背景的解决方案?
示例 CSS 渐变:
linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 400px) repeat fixed 0 0 rgba(255, 255, 255, 0)
...
现在我想对图像做同样的事情,并将其停在 400 像素。