Client wants two color borders for an embossed look. Can I do this on one element? I was hoping to avoid stacking two DOM elements with individual borders.
feedback
|
|
Yep: Use the This can also be useful in the case where you want to jettison the outline for certain browsers (such as is the case if you want to combine the outline with a drop shadow; in WebKit the outline is inside of the shadow; in FireFox it is outside, so
Edit: Some people have remarked that | |||||||||||||
feedback
|
|
this is very possible. Just takes a little css trickery! http://jsfiddle.net/rkingon/qcvbD/1/ is that what you are looking for?! | |||
feedback
|
|
Another way is to use
See example here. | |||
|
feedback
|
|
Have you tried the different border styles available within the CSS spec? There's already two border styles that might accommodate your need:
Or
| |||||
feedback
|
|
If by "embossing" you mean two borders around each other with two different colours, there is the If you mean using two colours in the same border. Use e.g.
there are special | |||||||||
feedback
|
|
Not possible, but you should check to see if CSS3 has the border-image properties, but i do not know about support from browsers yet (more info at http://www.css3.info/preview/border-image/).. | |||||
feedback
|
|
Simply write
for the html tag | |||||
feedback
|
|
You could use
| |||
|
feedback
|