gpt4 book ai didi

javascript - 在 DIV 中重复图像后跟另一个图像

转载 作者:太空宇宙 更新时间:2023-11-04 00:02:07 27 4
gpt4 key购买 nike

只是想提前说声谢谢。

首先,我有一个 Height: 100%Width: 130px 的 div 我有一个 130x5px 的图像,我想垂直重复它直到达到屏幕的 75%高度。然后我想在它的正下方放置另一个图像。我知道如何垂直重复图像。但我不确定如何在其正下方附加另一张图片。

附言我希望它们都在同一个 div 中,这样我就可以使用 JQuery 来控制 div 而不仅仅是其中的各个元素。

最佳答案

这样的事情怎么样:

div.snocavotia {
background: url(http://lorempixel.com/130/5/) repeat;
z-index: 100;
height: 100%;
width: 130px;
position: relative;
}

div.snocavotia:after {
background: url(http://lorempixel.com/130/30/) repeat;
z-index: 1;
content: '';
position: absolute;
top: 75%;
right: 0;
bottom: 0;
left: 0;
}

示例:http://cssdesk.com/h2XGc

关于javascript - 在 DIV 中重复图像后跟另一个图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16287240/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com