我需要帮助在框的所有4个边上应用渐变边框。我尝试过,但它只适用于双方。在查看所有链接和SO答案后,我得到了这个:
.test{
height:250px;
border: 2px solid;
border-image: linear-gradient(to left,rgba(78,137,176,1) 1%, rgba(115,192,85,1) 100%) 100% 0 100% 0/2px 0 2px 0;
padding-top:50px;
}
<div class="test">
This is a box and I want borders for all the sides
</div>
我将不胜感激任何帮助。我正在尝试类似于下图的内容。 谢谢。
答案 0 :(得分:10)
使用背景图片(生成确切的输出作为图片)
您似乎每侧都有 不同 的渐变,因此使用border-image
属性很难实现此目标。您可以尝试使用background-image
来模仿行为,如下面的代码段所示。
下面的代码片段基本上是它为4个边中的每个边创建渐变作为渐变背景图像条,然后使用background-position
将它们放在正确的位置。
父级上的透明边框是一个占位符,模仿的边框最终会出现。 background-origin: border-box
使元素的背景从border-box
区域本身开始(而不是padding-box
或content-box
)。这两个只是额外的步骤,以避免在calc
中使用不必要的background-position
内容。
.test {
height: 250px;
border: 2px solid transparent;
background-image: linear-gradient(to right, rgb(187, 210, 224), rgb(203, 231, 190)), linear-gradient(to bottom, rgb(114, 191, 87), rgb(116, 191, 86)), linear-gradient(to left, rgb(204, 233, 187), rgb(187, 210, 224)), linear-gradient(to top, rgb(84, 144, 184), rgb(80, 138, 176));
background-origin: border-box;
background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
background-position: top left, top right, bottom right, bottom left;
background-repeat: no-repeat;
padding-top: 50px;
}
<div class="test">
This is a box and i want border for all the side
</div>
使用边框图像(在所有4个边上生成边框但输出与图像不同)
使用border-image
属性可以得到的最佳输出如下所示,但从演示中可以看出它与图像(或第一个片段的输出)不完全相同:
.test {
height: 250px;
border: 2px solid;
border-image: linear-gradient(to left, rgba(78, 137, 176, 1) 1%, rgba(115, 192, 85, 1) 100%);
border-image-slice: 1;
padding-top:50px;
}
<div class="test">
This is a box and i want border for all the side
</div>
答案 1 :(得分:-1)
我以这种方式自己意识到了这一点:
背景在背景图像内改变。
div {
width: 170px;
height: 48px;
border-style: solid;
border-width: 2px;
border-image-source: linear-gradient(to bottom, #fff042, #ff5451);
border-image-slice: 1;
background-image: linear-gradient(to bottom, #f9e6e6, #c5e0c3), linear-gradient(to bottom, #fff042, #ff5451);
background-origin: border-box;
background-clip: content-box, border-box;
display: flex;
align-items: center;
justify-content: center;
text-transform: uppercase;
}
<div>text</div>