试图像下面的图像一样制作多色底部边框,但是失败了。
试图使用border-image: linear-gradient()
,但没有成功。它只会得到以下一种颜色:#707070
。
a {
color: #707070 !important;
font-size: 20px;
text-decoration: none;
margin-right: 50px;
border-bottom: 5px solid;
border-image: linear-gradient(to bottom, #707070 20%, #a4c0e9 20%, #a4c0e9 80%, #707070 80%) 5;
}
<div id="nav">
<a href="/">HOME</a>
<a href="/projects">PROJECTS</a>
<a href="/resume">RESUME</a>
</div>
答案 0 :(得分:2)
问题在于,百分比是相对于元素而不是边框的,这会使20%
大于5px
。
您需要考虑像素值。您还需要从底部开始,因为顶部引用也是元素的顶部:
a {
color: #707070 !important;
font-size: 20px;
text-decoration: none;
margin-right: 50px;
border-bottom: 5px solid;
border-image:
linear-gradient(to top, #707070 1px, #a4c0e9 1px, #a4c0e9 4px, #707070 4px) 5;
}
<a>A link element</a>
或将其用作背景,将更易于处理:
a {
color: #707070 !important;
font-size: 20px;
text-decoration: none;
margin-right: 50px;
border-bottom: 5px solid transparent;
background:
linear-gradient(to bottom, #707070 20%, #a4c0e9 20%, #a4c0e9 80%, #707070 80%) bottom/100% 5px border-box no-repeat;
}
<a>A link element</a>
相关:border-image-slice for gradient border image
下面是一个示例,可以更好地说明您遇到的问题:
.box {
width:100px;
height:100px;
display:inline-block;
border-bottom:10px solid rgba(0,0,0,0.2);
}
<div class="box" style="background:linear-gradient(to bottom, #707070 20%, #a4c0e9 20%, #a4c0e9 80%, #707070 80%) border-box">
</div>
<div class="box" style="border-image:linear-gradient(to bottom, #707070 20%, #a4c0e9 20%, #a4c0e9 80%, #707070 80%) 10 fill">
</div>
<div class="box" style="border-image:linear-gradient(to bottom, #707070 20%, #a4c0e9 20%, #a4c0e9 80%, #707070 80%) 10 ">
</div>
在此示例中,第一个框显示了我们将要使用的渐变。在第二个中,我们使用fill
将其应用到边框上,还对中间区域着色;在最后一个中,我们仅对border-bottom
答案 1 :(得分:0)
发布代码或指向jsfiddle或Codepen的链接总是很好。您可以参考帮助部分中的询问方法
就您而言,此处显示的设计看起来并不像渐变。我有一个纯色和边框。渐变可以在边框上使用,您可以看到它here
要实现您所显示的效果,我将使用:after和following风格,
a{
position: relative;
padding-bottom: 20px;
&:after{
position: absolute;
content: '';
height: 10px;
width: 100%;
left: 0;
bottom: 0;
background: #a4c0e9;
border-top: 1px solid #707070;
border-bottom: 1px solid #707070;
}
}