Is it possible to set the size of the background image with CSS?
I want to do something like:
background: url('bg.gif') top repeat-y;
background-size: 490px;
But it seems it's totally wrong to do it like that...
|
Is it possible to set the size of the background image with CSS? I want to do something like:
But it seems it's totally wrong to do it like that... |
||||
|
|
CSS2If you need to make the image bigger, you must edit the image itself in an image editor. If you use the img tag, you can change the size, but that would not give you the desired result if you need the image to be background for some other content (and it will not repeat itself like you seems to want)... CSS3 unleash the powersThis is possible to do in CSS3 with All modern browsers support this, so unless you need to support old browsers, this is the way to do it.
In particular, I like the RoundYou can also use
This will adjust the image width so it fits a whole number of times in the background positioning area. Additional note |
|||||||||||
|
|
Only CSS 3 supports that,
But I would edit the image itself, so that the user needs to load less, and it might look better than a shrunken image without antialiasing. |
|||||||||||||||||||||
|
|
If your users use only Opera 9.5+, Safari 3+, Internet Explorer 9+ and Firefox 3.6+ then the answer is yes. Otherwise, no. The background-size property is part of CSS 3, but it won't work on most browsers. For your purposes just make the actual image larger. |
|||||||||||||
|
|
Not possible. The background will always be as large as it can be, but you can stop it from repeating itself with
Secondly, the background does not go into margin-area of a box, so if you want to have the background only be on the actual contents of a box, you can use margin instead of padding. Thirdly, you can control where the background image starts. By default it's the top left corner of a box, but you can control that with
or perhaps
Negative positioning is used a lot with CSS sprites. |
||||
Not too hard, if you're not afraid of going a little more in depth :)There's one forgotten argument:
This won't stretch your Edit: There's also
|
||||
|
|
|
Maybe it's possible. See How To: Resizeable Background Image. |
||||
|
|
|
Just have nested divs to be cross browser compatible
|
|||
|
|
|
You can't set the size of your background image with the current version of CSS (2.1). You can only set: |
||||
|
|
|
background-size: 200px 50px change it to 100% 100% and it will scale on the needs of the content tag like ul li or div... tried it |
|||
|
|
|
You totally can with CSS3:
This will size a background image to 100% of the width of the body element and will then re-size the background accordingly as the body element re-sizes for smaller resolutions. Here is the example: http://www.sccc.premiumdw.com/examples/resize-background-images-with-css/ |
||||
|
|
|
You can use two
The contained div is then set to be positioned It enables you to use sprite images efficiently. |
||||
|
|
|
|
||||
|
|
|
I use background images for buttons, but it only shows the image the same size as the text, even if I set width and height. Instead, I pad out my text with In the style sheet:
In the HTML document:
|
|||||
|
|
In support of the answer that @tetra gave, I want to point out that if the image is an SVG, then resizing the actual image is not necessary. Since an SVG file is just XML you can specify whatever size you want it to appear within the XML. However, if you are using the same SVG image in different places and need it to be different sizes, then using Here is a quick example:
(Note: this works for me in OS X 10.7 with Firefox 8, Safari 5.1, and Chrome 16.0.912.63) |
|||
|
|
|
For example:
} |
|||
|
|
|
|||
|
|