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);
This does not work, does anyone know what the correct way to do border gradients is.
|
|
WebKit now (and Chrome 12 at least) supports gradients as border image:
Prooflink -- http://www.webkit.org/blog/1424/css3-gradients/ |
|||||||||||||||||
|
|
instead of borders, I would use background gradients and padding. same look, but much easier, more supported. a simple example:
CSS:
|
|||||
|
— https://developer.mozilla.org/en/CSS/-moz-linear-gradient
|
|||
|
|
|
It's a hack, but you can achieve this effect in some cases by using the background-image to specify the gradient and then masking the actual background with a box-shadow. For example:
From: http://blog.nateps.com/the-elusive-css-border-gradient |
|||
|
|
|
Here is a good write up on what you are trying to do, with examples. http://designshack.co.uk/articles/introduction-to-css3-part-2-borders |
|||
|
|
|
I agree with szajmon. The only problem with his and Quentin's answers is cross-browser compatibility. HTML:
CSS:
|
|||||||||||
|
|
Another hack for achieving the same effect is to utilize multiple background images, a feature that is supported in IE9+, newish Firefox, and most WebKit-based browsers: http://caniuse.com/#feat=multibackgrounds There are also some options for using multiple backgrounds in IE6-8: http://www.beyondhyper.com/css3-multiple-backgrounds-in-non-supportive-browsers/ For example, suppose you want a 5px-wide left border that is a linear gradient from blue to white. Create the gradient as an image and export to a PNG. List any other CSS backgrounds after the one for the left border gradient:
#theBox {
background:
url(/images/theBox-leftBorderGradient.png) left no-repeat,
...;
}
You can adapt this technique to top, right, and bottom border gradients by changing the background position part of the Here is a jsFiddle for the given example: http://jsfiddle.net/jLnDt/ |
|||
|
|
|
Webkit supports gradients in borders, and now accepts the gradient in the Mozilla format. Firefox claims to support gradients in two ways: IE9 has no support. |
|||
|
|