我想将图像设置为我的 div 的边框
主要规则是:边框应该在盒子外面,而不是增加盒子的大小。另请注意,div 的(项目)具有相同的宽度,但不同的高度。
我想看到的结果:https ://dc579.4shared.com/img/JjmymoBWiq/s23/17d090e2630/result
边框图片:https ://dc614.4shared.com/img/2uaeGtwfea/s23/17d090b76b0/border-1
.container {
display: flex;
justify-content: space-around;
}
.product1 {
width: 200px;
height: 500px;
background-color: blue;
}
.product2 {
width: 200px;
height: 550px;
background-color: green;
}
.product3 {
width: 200px;
height: 520px;
background-color: red;
}
.item {
border: 20px;
border-image: url("https://dc614.4shared.com/img/2uaeGtwfea/s23/17d090b76b0/border-1")
}
<div class="container">
<div class="product1 item">
123
</div>
<div class="product2 item">
123
</div>
<div class="product3 item">
123
</div>
</div>