The multiple-background tag has no wiki summary.
2
votes
1answer
44 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
1answer
80 views
CSS3 - Multiple backgrounds sometimes causes 404 errors
I'm using the CSS3 ability to apply multiple background images to an element. Currently, I have this code in my stylesheet:
body{background:url("images/emblem.png") top center no-repeat, ...
1
vote
2answers
18 views
Css multiple background images with margin
i'm trying to use 2 background images on a div, im using theese style for this
background:url(../images/bg1.png),url(../images/bg2.png);
but all images are like position absolute, they are on ...
1
vote
1answer
60 views
Multiple Backgrounds in Multiple Selectors
I'm trying to create a CSS3 button which includes an image using multiple background. I want to use the same basic style (based on Twitter's BootStrap CSS framework), but apply a different image by ...
1
vote
1answer
115 views
Can multiple background images alternate when repeated?
I am trying to alternately tile multiple backgrounds images using CSS. Here is the essence of what I am trying, with two small square images X and O:
background-image: url(images/X.png), ...
0
votes
1answer
21 views
jquery to change css background position on multiple backgrounds
I am trying through jquery to change the background images position of an element depending on resolution. The code:
var pwwidth = $(window).width();
var pwheight = $(window).height();
var bg1posx = ...
0
votes
1answer
21 views
What is wrong with my css3 multiple background code?
I tried setting up an example on JSFiddle but it shows an error for some reason: http://jsfiddle.net/t3DDW/
Anyway, here is my css:
body { background:url("images/bg.gif") repeat 0 0, ...
0
votes
3answers
26 views
CSS3: multiple backgrounds. with colors?
if i try to apply multiple background images, works great:
.selector{
background-image: url(image1.png), url(image2.pnng);
background-position: 0 -50px, 0 -100px;
}
the problem comes ...
0
votes
1answer
33 views
How to position an image sprite at the bottom of an element of unknown height
I am using an image sprite that consisting of four "sub-images": four corners for a div element. The sprite is 40px by 40px. Each "sub-image" is 20px by 20px. Each corner's "sub-image is on the ...
0
votes
1answer
236 views
Opera 11.11, multiple backgrounds, gradients and modernizr issue
I've got some strange problem around multiple backgrounds. I use a combination of linear gradient, radial gradient and a repeated gif picture to make the background for page.
Here is the css I assign ...
0
votes
2answers
475 views
CSS gradient above background pattern
I want to make pattern background and a white to black (with transparency) gradient above it. How to work it out and also make it work cross-browser? I'm starting with Mozilla and I've tried to use ...
0
votes
2answers
348 views
How to give left and right padding/margin to repeated background in css3 multiple background?
What I want to do is exactly the same like in this article
http://css-tricks.com/css3-multiple-backgrounds-obsoletes-sliding-doors/
But in my case the left and right image is transparent. so ...