How do I get a div to automatically adjust to the size of the background I set for it without setting a specific height (or min-height) for it?
Any help appreciated!
|
How do I get a div to automatically adjust to the size of the background I set for it without setting a specific height (or min-height) for it? Any help appreciated! |
|||
|
|
|
There is no way to auto adjust for background image size using CSS. You can hack around it by measuring the background image on the server and then applying those attributes to the div, as others have mentioned. You could also hack up some javascript to resize the div based on the image size (once the image has been downloaded) - this is basically the same thing. If you need your div to auto-fit the image, I might ask why don't you just put an |
|||||||||
|
|
Another, perhaps inefficient, solution would be to include the image under an img tag with the visibility set to hidden. Then make the background of the surrounding div the same as the image. This will set the surrounding div to the size of the image in the img tag but display it as a background.
|
|||
|
|
|
Maybe this can help, it's not exactly a background, but you get the idea:
|
|||
|
|
|
You can do it server side: by measuring the image and then setting the div size, OR loading the image with JS, read it's attributes and then set the DIV size. And here is an idea, put the same image inside the div as an IMG tag, but give it visibility: hidden + play with position relative+ give this div the image as background. |
|||||
|
|
|
If you can make an image on Photoshop where the main layer has an opacity of 1 or so and is basically transparent, put that img in the div and then make the real picture the background image. THEN set the opacity of the img to 1 and add the size dimensions you want. http://griffincorpfs.com/about/ That picture is done that way, and you can't even drag the invisible image off the page which is cool. |
|||
|
|