I'm doing a css webpage and i got a Gradient background which works well on Firefox but on IE the -body- shows the gradient but the -wrapper-(whcih is 90% of the screen) is black, only the border around shows the gradient that is the body behind it.Anybody has a suggestion of what might be? Thanks
Are you saying the body background is supposed to be the gradient and IE is covering that with a background on the wrapper? If so, set the background for the wrapper to transparent.
body { background:#000 url(/images/grad.gif) repeat-x top; } .container { /*make sure you are not applying a bg color or bg image here */ }