I have a div that contains a PNG background-image. After the div is displayed on my web page in IE7, there is a whitespace between the div and footer. All other browsers (incl. IE8) display the PNG correctly. Any ideas on a resolution would be appreciated?
|
|
Just a thought here, but maybe it's the browser's stylesheet that is adding that whitespace? Try using a CSS Reset. |
||||
|
|
|
It's very likely you have white space surrounding your
Try making it:
So: |
||
|
|
|
|
Forcing the browser to treat the image as a block element should nullify any inherited margins that it is given. Try this:
Keep in mind that your image now behaves like a DIV tag. So apply your formatting / positioning accordingly. For example, if you want to center your graphic, you should do so like any other DIV element:
|
||
|
|
