On Firefox and Safari, I can use an image for the border with the following CSS:

-moz-border-image: url(shadow_left.png) 0 7 0 7 round round;
-webkit-border-image: url(shadow_left.png) 0 7 0 7 round round;

However, I can't figure out a way to use a different image for left and right. Is there any way of doing so which is supported by modern browsers?

link|improve this question

does url accept strings without being wrapped in single quotes? I've only ever seen url(shadow_left.png) written as url('shadow_left.png') – Jim Schubert Dec 11 '09 at 16:43
indeed, it does – Shawn Dec 11 '09 at 19:42
feedback

4 Answers

up vote 8 down vote accepted
+150

Previous drafts said it's possible, by using:

border-top-image
border-right-image
border-bottom-image
border-left-image
border-top-left-image
border-top-right-image
border-bottom-left-image
border-bottom-right-image

alt text

However, the current candidate recommendation for CSS Backgrounds and Borders(25 November 2009) these properties disappeared. It looks like you cannot use different images for each border side anymore.

As a personal note, I wouldn't have used different images anyway to avoid flickering for the same reason one would pack button states (unpressed, pressed, hover) in a single image file and then use css to offset in the source image.

EDIT: border-top-image, border-left-image, etc were present in WD 2002-11-07 but disappeared in WD 2005-02-16.

EDIT2: You might be interested in the jquery.borderimage.js plugin.

link|improve this answer
feedback

CSS3 allows border-left-image (and top, right, bottom) I would expect the browser-specific versions to do the same. But didn't test it.

link|improve this answer
Tried that, no dice in either browser. Tried lots of syntax variations on -moz-border-image-right: url(/images/shadow_r.png) 7px round; – Luke Dennis Nov 21 '09 at 19:06
feedback

Reading the CSS3 spec, there does not seem to be any mention of using different borders for the different edges. However, css3.info mentions a few properties that should exist, but doesn't according to the spec.

link|improve this answer
feedback

I just tried this in IE7, Firefox 3.5.2, Safari and Chrome, and nothing worked.

link|improve this answer
IE? Seriously? :) – porneL Dec 12 '09 at 23:49
Unfortunately, yes, seriously :>P. They've got me coding for IE6 over here. And they're serious. Makes me mad that hey still are using a browser from 1999. I wish they payed my benefits like it was 1999... – tahdhaze09 Dec 14 '09 at 14:17
feedback

Your Answer

 
or
required, but never shown

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