CSS3渐变边框

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

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

这不起作用,有没有人知道什么是做边界渐变的正确方法是。

WebKit现在(至lessChrome 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

而不是边界,我会使用背景渐变和填充。 相同的外观,但更容易,更多的支持。

一个简单的例子:

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

CSS:

 .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; } 

的jsfiddle

编辑:你也可以利用:beforeselect器@WalterSchwarz指出在这个jsFiddle

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

试试这个,在web-kit上工作正常

http://jsfiddle.net/284sa/

 .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> 

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

这(据我了解),防止“图像”的默认切片分区 – 没有它,没有什么会出现,如果边界只在一边,如果是围绕整个元素四个微小的梯度出现在每个angular落。

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

这是一种黑客攻击,但是在某些情况下可以通过使用背景图像来指定渐变,然后用盒状阴影来掩盖实际背景,从而达到这种效果。 例如:

 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

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

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; } 

Webkit支持边界渐变 ,现在接受Mozilla格式的渐变。

Firefox声称支持两种方式的渐变:

  1. 使用带有border-image-source的边框图像
  2. 使用边界右侧的颜色(右/左/上/下)

IE9没有支持。

实现同样效果的另一个窍门是利用多个背景图像,这是IE9 +,新版Firefox和大多数基于WebKit的浏览器支持的function: http : //caniuse.com/#feat=multibackgrounds

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

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

 #theBox {
    背景:
         url(http://img.dovov.comtheBox-leftBorderGradient.png)没有重复,
         ...;
 }

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

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

渐变边界从Css技巧: 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; } 

对于跨浏览器的支持,你也可以尝试:after伪元素:before:after模仿一个渐变边界,这取决于你想要做什么。

试试这个代码

 .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/

这里有一个很好的半跨浏览器的方式,使渐变边框淡出一半。 只需将颜色停止设置为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/en-US/docs/Web/CSS/linear-gradient