I have a situation where i need to set an image in the background of <div> and want it to resize according to the div dynamically. That means the height and width of the <div> can change according to the data on fly. So i want the image to follow the <div>.
thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
You could rely on the CSS background-size property. See this tutorial - they apply it to the body element, but this could work with any
There are some filters that need to be applied to get IE to behave, but they are mentioned at the bottom of the post. |
|||
|
|
|
Resize images using jQuery
|
|||||||||||||
|
|
set the width attribute in your image tag to 100%, so it will completely reside in the parent tag. |
|||||
|
<img>or a background image for the div? – Kyle Sevenoaks Mar 30 '12 at 16:35