Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I would like to make the border faded. I have the exact webkit-gradient settings that I want.

But not sure how to implement it on the border element.

Is it possible? How do I do that?

Only CSS3 please.

Btw, I tried the following CSS and it didn't work:

border-color: -webkit-gradient( linear, left bottom, left top, color-stop(0.74, rgb(214,11,11)), color-stop(0.39, rgb(175,13,13)), color-stop(0.07, rgb(157,22,22)));
    border-style: solid;
    border-width: 10px;
share|improve this question

2 Answers

up vote 11 down vote accepted

Yes, you can apply -webkit-gradient to a border:

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

(from this example on webkit.org)

See the blog post on Webkit.org about -webkit-gradient

share|improve this answer
   
@Josh Border Image gradients are style VERY VERY Broken, but if you want to risk it, you COULD hack something together (It won't work very well if you change zoom levels or on this or that browser) jsfiddle.net/MWaTw [tested in google chrome] – mrBorna Jul 13 '11 at 14:51
2  
This doesn't work with border-radius =/ – grisevg Mar 8 '12 at 9:36

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.