Tagged Questions
3
votes
4answers
606 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
43 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
130 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
105 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 ...
1
vote
2answers
45 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
2answers
70 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
85 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
242 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
136 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
1answer
40 views
css being overridden/shut off
I downloaded a website template and I am trying to add an iChat like message system using CSS as seen in the link (style 4). My problem is if I take out the template I can see the bubbles as shown in ...
0
votes
1answer
110 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. ...