Gradient borders

后端 未结 17 1451
一个人的身影
一个人的身影 2020-11-22 03:40

I\'m trying to apply a gradient to a border, I thought it was as simple as doing this:

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


        
17条回答
  •  别那么骄傲
    2020-11-22 04:18

    WebKit now (and Chrome 12 at least) supports gradients as border image:

    -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/
    Browser support: http://caniuse.com/#search=border-image

提交回复
热议问题