Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
594 views

Is there a way to use a different image for each side of a CSS3 border-image?

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 ...
2
votes
1answer
26 views

Technique for adding flourishes to div corners and borders: CSS3 Multiple Backgrounds or Border Images?

I'm 'embellishish' an existing website with some nice flourishes to the corners and borders of a content div. Without changing the markup at all (as it is generated by a CMS), how can I add ...
2
votes
3answers
103 views

border-image in CSS

I am stuck with borders on my website... I want to put an image at the top of my vertical menu, one at the bottom and a background for the middle but that doesn't work. This is my code: ...
2
votes
1answer
83 views

Right side border gradient only with the newer webkit gradient syntax, also which browsers support this, and how to do it in those as well?

Any other questions relating to this either have answers giving the OLD webkit syntax, not the new syntax, or they don't explain how to apply the border-gradient to ONLY one side. Which browsers ...
2
votes
1answer
524 views

How can I get css3 border-image working in IE9?

I'm using border-image which works in all browsers except IE. For IE versions 7 and 8, I have css3pie which makes it work. But I haven't been able to find any plugin to make it work in IE9. Is there a ...
2
votes
2answers
337 views

How does CSS 3 border-image work exactly?

I have an image of 4x4 in size and I want to use it all around a DIV's border. The following: -moz-border-image: url("../images/window/side.png") 4 4 4 4 / 4px 4px 4px 4px repeat repeat will place ...
1
vote
2answers
39 views

I have an image, that I created with border CSS. However, it's not IE compatible, are there any good alternatives for IE?

I have an image that I created with border CSS. However, it's not IE compatible. Are there any good alternatives for IE? #post-wrap { margin:auto; padding: 0px 40px 70px 40px; width: ...
1
vote
1answer
49 views

Border-image transparency for CSS

I have an image, that I created with border CSS. However, on chrome, it doesn't fill up the center of the div with the appropriate color and it's transparent. When I put a background to white, it ...
1
vote
4answers
77 views

CSS3 Border Images

I'm trying to achieve a 5px gradient around all edges. I've found multiple ways to do this in all browsers except for IE (-mos-border-colors and apply 5 separate colors, border-image, etc...). I've ...
1
vote
3answers
218 views

How do I set a border-image?

I have this HTML code in which a QR-code is generated via AJAX : <div class="qr-border"> <p id="qr" class="ajax_qrcode{if $cart_qties < 1} hidden{/if}"></p> </div> ...
1
vote
3answers
127 views

Possible to use border-radius together with a border-image which has a gradient?

I'm styling an input field which has a rounded border (border-radius), and attempting to add a gradient to said border. I can successfully make the gradient and the rounded border, however neither ...
1
vote
2answers
1k views

Give a CSS styled div a “border-left-image”

Just trying to give the main content div on a site a border on the left and right side of the div. Rather than have separate divs for each border, I thought to use the border-left-image capability in ...
0
votes
0answers
90 views

border-image gtk3 theme

Im having problems with border-image in unico and adwaita engines. While this will work for adwaita buttons but not tabs and in unico just wont work border-image: ...
0
votes
1answer
99 views

Specifying different images as left and right borders css

I have to mix 2 images (from different sprites) and generate a single button out of them. I tried using the css properties 'border-left-image' and 'border-right-image' in chrome. But it does not work. ...
0
votes
2answers
141 views

CSS3: How to get a semitransparent border-image to show the border-color behind

I have a wrapper div with a 20px right border. I set a border-color and then a border-image with a semitransparent png. I did that to be able to change the color below via javascript while keeping ...
0
votes
1answer
175 views

CSS3 background-origin property does work in firefox?

I want use CSS3 property to make a complicated background image which with corner shadow and so on.Including background image,left border image,right border image.So,for the <div ...
0
votes
1answer
576 views

css3 border-image's transparent png issue

I'm using border-image with a PNG image that has a transparent section. The issue is that the div has background-color set the black. When I apply border-radius, the transparent section of the pattern ...