gpt4 book ai didi

html - 条纹边框像示例图像 css

转载 作者:行者123 更新时间:2023-11-28 05:12:03 27 4
gpt4 key购买 nike

我想创建一个条纹边框。

我想使用 img 标签或 div 标签将图像包含在条纹边框的顶部。

这是它需要的样子:

enter image description here enter image description here

现在我正在尝试将边框图像作为 svg。

.feed-item:after {
background: #0055b9;
background: url(../images/studentslab_hover_stripe_bg.svg);
background-repeat: no-repeat;
background-size: 100% 100%;
padding: 4vw 2.7vw 2vw 2vw;
width: 104%;
opacity: 0;
}

.feed-item:hover:after {
opacity: 1;
z-index: -1;
}

但在响应方面,有时它并没有完全覆盖,因为我的条纹背景图像具有尺寸高度和宽度。

所以我想把它当作边框来使用。有什么办法吗?

最佳答案

在伪元素上使用重复的线性渐变,然后将其绝对定位在父 div 的后面。

悬停时移动它。

div {
width:150px;
height: 200px;
margin:1em auto;
border:2px solid green;
position: relative;
background: white;
}

div:after {
content:"";
position: absolute;
z-index:-1;
top:0;
left:0;
height:100%;
width:100%;
background: repeating-linear-gradient(
-45deg,
transparent 0,
transparent 4px,
blue 4px,
blue 8px);
transition:all .25s ease;

}

div:hover::after {
left:8px;
top:8px;

}
<div>Hover me</div>

关于html - 条纹边框像示例图像 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53893004/

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