I am new to html and stuck badly on one problem.

I am trying to fit my background image to its parent container but it seems it does not occupy the full space of its parent container in IE7. "I put #background-repeat:repeat-y but it repeats the image with some space between the two." I tried every possibilty but was unsuccessful. I am putting my css code here.

#main_container { // parent container
    background-image:url('/DiscoverCenter/images/app_bg.jpg');
    background-repeat:no-repeat;
    width:645px;
    height:900px;
    margin-left:20px;
    float:left;
}
        #app_container {         //child container
    background-image: url('/DiscoverCenter/images/app_bg_white.jpg'); // it doesnt render properly on IE7
    background-repeat:no-repeat;
    #background-repeat:repeat-y;
    width:605px;
    height:825px;
    overflow:auto;
    #position: relative;
} 

Please help me. It will be great.

thanks in advance.

HP

link|improve this question

68% accept rate
Can you show an example? There is no space actually inside the image that could be causing this? – Pekka Feb 21 '11 at 17:08
Can you link to the image here? It might help. An example with everything running would help even better. – biscuitstack Feb 21 '11 at 17:08
I am not sure of how to attach an image here. can you please help? – Gendaful Feb 21 '11 at 17:26
Please refer to the Markdown editing help section about images: Images are embedded like links, but with an exclamation mark before it: e.g., ![Valid XHTML](http://w3.org/Icons/valid-xhtml10). Simply upload your image to a free image hoster and esxchange the link in the example. – s.d May 24 '11 at 10:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.