HI,
You missed out the most important bit that was explained in those links I gave you 
You have to use min-height:100% on your wrapper or it won't expand which is what is happening in firefox and ie7.
You just give ie6 the height:100% using the star selector as follows.
Code:
#tudo {width: 760px;min-height: 100%;padding: 0px;margin: 0 auto 0 auto;border: none;
margin-bottom:-87px;background-image: url(http://www.jgdesign.com.br/acv/imagens/fundo_conteudo.gif);
}
* html #tudo{height:100%}
Remember that when you set a height then that is all will you get so you can't set a div to be 100% high and then want it to expand even bigger. IE6 treats height like min-height and will always expand the height to accommodate the content.
The above should fix the issue you were experiencing as long as we were talking about the same thing
Bookmarks