渐变边框


274

我试图将渐变应用于边框,我认为这样做很简单:

border-color: -moz-linear-gradient(top, #555555, #111111);

但这是行不通的。

有谁知道做边界渐变的正确方法是什么?

Answers:


191

WebKit现在(至少Chrome 12)支持渐变作为边框图像:

-webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(#00abeb), to(#fff), color-stop(0.5, #fff), color-stop(0.5, #66cc00)) 21 30 30 21 repeat repeat;

Prooflink- http
: //www.webkit.org/blog/1424/css3-gradients/浏览器支持:http : //caniuse.com/#search=border-image


21
该链接根本没有提到边框图像...:/
aaaidan

4
使用边界半径时,不能在任何浏览器中使用!显然,即使打开border-radius,border-image属性也始终创建正方形边框。因此,使用嵌套元素(或:before元素)的替代方法是最灵活的解决方案。这是一个JSFiddle,它显示了最简单的方法:jsfiddle.net/wschwarz/e2ckdp2v
Walter Schwarz

112

而不是边框​​,我将使用背景渐变和填充。外观相同,但更加轻松,获得更多支持。

一个简单的例子:

.g {
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.33, rgb(14,173,173)), color-stop(0.67, rgb(0,255,255)));
background-image: -moz-linear-gradient(center bottom, rgb(14,173,173) 33%, rgb(0,255,255) 67% );
padding: 2px;
}

.g > div { background: #fff; }
<div class="g">
	<div>bla</div>
</div>


编辑:您还可以利用:before选择器,如@WalterSchwarz所指出的:

body {
    padding: 20px;
}
.circle {
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #3acfd5 0%, #3a4ed5 100%);
    border-radius: 100%;
    position: relative;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.circle::before {
    border-radius: 100%;
    content: '';
    background-image: linear-gradient(to bottom, #3acfd5 0%, #3a4ed5 100%);
    padding: 10px;
    width: 100%;
    height:100%;
    top: -10px;
    left: -10px;
    position:absolute;
    z-index:-1;
}
<div class="circle">Test</div>


3
使用:before元素更好,因为这样您就可以通过CSS进行完全控制,并且HTML标记保持清晰。这是一个JSFiddle,它显示了最简单的方法:jsfiddle.net/wschwarz/e2ckdp2v
Walter Schwarz

请注意,“更多支持”意味着包括对IE10的支持。请参见CanIUse border-imageCanIUse Gradient
2015年8

56

border-image-slice 将扩展CSS边框图像渐变

(据我所知)这可以防止将“图像”默认分割为多个部分-如果没有分割,则仅当边框位于一侧时,什么也不会出现,如果边框位于整个元素周围,则每个角上会出现四个微小的渐变。

  border-bottom: 6px solid transparent;
  border-image: linear-gradient(to right, red , yellow);
  border-image-slice: 1;

8
在Chrome中,如果这是结合border-radius中,边界半径被忽略:(

49

Mozilla当前仅支持CSS渐变作为background-image属性以及速记背景的值。

- https://developer.mozilla.org/en/CSS/-moz-linear-gradient

Example 3 - Gradient Borders

border: 8px solid #000;
-moz-border-bottom-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
-moz-border-top-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
-moz-border-left-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
-moz-border-right-colors: #555 #666 #777 #888 #999 #aaa #bbb #ccc;
padding: 5px 5px 5px 15px; 

http://www.cssportal.com/css3-preview/borders.htm


27

尝试一下,在Web-kit上运行良好

.border { 
    width: 400px;
    padding: 20px;
    border-top: 10px solid #FFFF00;
    border-bottom:10px solid #FF0000;
    background-image: 
        linear-gradient(#FFFF00, #FF0000),
        linear-gradient(#FFFF00, #FF0000)
    ;
    background-size:10px 100%;
    background-position:0 0, 100% 0;
    background-repeat:no-repeat;
}
<div class="border">Hello!</div>


1
为什么顶部和底部是纯色?
john ktejik '19

11

这是一种技巧,但是在某些情况下,您可以通过使用background-image指定渐变,然后用盒形阴影遮罩实际背景来实现此效果。例如:

p {
  display: inline-block;
  width: 50px;
  height: 50px;
  /* The background is used to specify the border background */
  background: -moz-linear-gradient(45deg, #f00, #ff0);
  background: -webkit-linear-gradient(45deg, #f00, #ff0);
  /* Background origin is the padding box by default.
  Override to make the background cover the border as well. */
  -moz-background-origin: border;
  background-origin: border-box;
  /* A transparent border determines the width */
  border: 4px solid transparent;
  border-radius: 8px;
  box-shadow:
    inset 0 0 12px #0cc, /* Inset shadow */
    0 0 12px #0cc, /* Outset shadow */
    inset -999px 0 0 #fff; /* The background color */
}

来自:http : //blog.nateps.com/the-elusive-css-border-gradient


4

试试这个,对我有用。

div{
  border-radius: 20px;
  height: 70vh;
  overflow: hidden;
}

div::before{
  content: '';
  display: block;
  box-sizing: border-box;
  height: 100%;

  border: 1em solid transparent;
  border-image: linear-gradient(to top, red 0%, blue 100%);
  border-image-slice: 1;
}
<div></div>

链接到小提琴https://jsfiddle.net/yash009/kayjqve3/1/希望这会有所 帮助


3

我同意szajmon。他和昆汀的答案唯一的问题是跨浏览器的兼容性。

HTML:

<div class="g">
    <div>bla</div>
</div>

CSS:

.g {
background-image: -webkit-linear-gradient(300deg, white, black, white); /* webkit browsers (Chrome & Safari) */
background-image: -moz-linear-gradient(300deg, white, black, white); /* Mozilla browsers (Firefox) */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000', gradientType='1'); /* Internet Explorer */
background-image: -o-linear-gradient(300deg,rgb(255,255,255),rgb(0,0,0) 50%,rgb(255,255,255) 100%); /* Opera */
}

.g > div { background: #fff; }

3
请,不filter支持IE这样小的功能,只需使用实心边框即可。
里卡多·齐亚

@Ricardo-关心解释原因?
Alohci 2012年

@Alohci,当然,有很多原因。请注意,我的解释不适合您,因为有您声誉的人已经知道这些事情,而是对其他人不知道和/或正在学习的事情:1 . 使用“ 优雅降级”更聪明。2.作为Web设计师/开发人员,我们应该考虑为用户而非浏览器构建网站。只是将其保留为3分,即3分。仅仅因为您可以做到,并不意味着您就应该这样做。与内联样式相同,不可避免!important。现在,阿罗奇(Alohci),轮到你解释原因了:)
里卡多·泽

然后,这一评论和所有这些总结起来。我敢肯定那里还有很多。
里卡多·泽


3

请尝试以下示例:

.border-gradient {
      border-width: 5px 5px 5px 5px;
      border-image: linear-gradient(45deg, rgba(100,57,242,1) 0%, rgba(242,55,55,1) 100%);
      border-image-slice: 9;
      border-style: solid;
}

2

实现相同效果的另一种方法是利用多个背景图像,IE9 +,最新的Firefox和大多数基于WebKit的浏览器均支持该功能:http : //caniuse.com/#feat=multibackgrounds

在IE6-8中,还有一些使用多个背景的选项:http : //www.beyondhyper.com/css3-multiple-backgrounds-in-non-supportive-browsers/

例如,假设您想要一个5像素宽的左边框,该边框是从蓝色到白色的线性渐变。将渐变创建为图像并导出到PNG。在左边界渐变的背景之后列出其他所有CSS背景:

#theBox {
    背景:
        url(/images/theBox-leftBorderGradient.png)不重复,
        ...;
}

您可以通过更改background简写属性的背景位置部分,使此技术适应顶部,右侧和底部边界渐变。

这是给定示例的jsFiddle:http : //jsfiddle.net/jLnDt/


2

Css-Tricks的渐变边框:http : //css-tricks.com/examples/GradientBorder/

.multbg-top-to-bottom {
  border-top: 3px solid black;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#000), to(transparent));
  background-image: -webkit-linear-gradient(#000, transparent);
  background-image:
      -moz-linear-gradient(#000, transparent),
      -moz-linear-gradient(#000, transparent);
  background-image:
      -o-linear-gradient(#000, transparent),
      -o-linear-gradient(#000, transparent);
  background-image: 
      linear-gradient(#000, transparent),
      linear-gradient(#000, transparent);
  -moz-background-size: 3px 100%;
  background-size: 3px 100%;
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat; 
}

1

对于跨浏览器支持,您还可以尝试模仿带有:before:after伪元素的渐变边框,具体取决于您要执行的操作。


1

渐变边框示例

使用border-image CSS属性

致谢:Mozilla中的border-image

.grad-border {
  height: 1px;
  width: 85%;
  margin: 0 auto;
  display: flex;
}
.left-border, .right-border {
  width: 50%;
  border-bottom: 2px solid #695f52;
  display: inline-block;
}
.left-border {
  border-image: linear-gradient(270deg, #b3b3b3, #fff) 1;
}
.right-border {
  border-image: linear-gradient(90deg, #b3b3b3, #fff) 1;
}
<div class="grad-border">
  <div class="left-border"></div>
  <div class="right-border"></div>
</div>


0

试试这个代码

.gradientBoxesWithOuterShadows { 
height: 200px;
width: 400px; 
padding: 20px;
background-color: white; 

/* outer shadows  (note the rgba is red, green, blue, alpha) */
-webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4); 
-moz-box-shadow: 0px 1px 6px rgba(23, 69, 88, .5);

/* rounded corners */
-webkit-border-radius: 12px;
-moz-border-radius: 7px; 
border-radius: 7px;

/* gradients */
background: -webkit-gradient(linear, left top, left bottom, 
color-stop(0%, white), color-stop(15%, white), color-stop(100%, #D7E9F5)); 
background: -moz-linear-gradient(top, white 0%, white 55%, #D5E4F3 130%); 
}

或参考这个小提琴:http : //jsfiddle.net/necolas/vqnk9/


0

这是一种不错的半跨浏览器方式,可以使渐变边框逐渐降低一半。只需将色标设置为rgba(0, 0, 0, 0)

.fade-out-borders {
min-height: 200px; /* for example */

-webkit-border-image: -webkit-gradient(linear, 0 0, 0 50%, from(black), to(rgba(0, 0, 0, 0))) 1 100%;
-webkit-border-image: -webkit-linear-gradient(black, rgba(0, 0, 0, 0) 50%) 1 100%;
-moz-border-image: -moz-linear-gradient(black, rgba(0, 0, 0, 0) 50%) 1 100%;
-o-border-image: -o-linear-gradient(black, rgba(0, 0, 0, 0) 50%) 1 100%;
border-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0) 50%) 1 100%;
}

<div class="fade-out-border"></div>

用法说明:

Formal grammar: linear-gradient(  [ <angle> | to <side-or-corner> ,]? <color-stop> [, <color-stop>]+ )
                              \---------------------------------/ \----------------------------/
                                Definition of the gradient line         List of color stops  

此处更多内容:https//developer.mozilla.org/zh-CN/docs/Web/CSS/linear-gradient


-2

这里有一个很好的CSS技巧文章:https//css-tricks.com/gradient-borders-in-css/

使用多个背景和background-origin属性,我能够提出一个非常简单的单一元素的解决方案。

.wrapper {
  background: linear-gradient(#222, #222), 
              linear-gradient(to right, red, purple);
  background-origin: padding-box, border-box;
  background-repeat: no-repeat; /* this is important */
  border: 5px solid transparent;
}

这种方法的优点是:

  1. 不受z-index影响
  2. 只需更改透明边框的宽度即可轻松缩放

签出: https : //codepen.io/AlexOverbeck/pen/axGQyv?editors=1100

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.