I need the div 01 not to interfere with the positioning of the other divs, like the div 03 for example, ie that the div 03 comes soon after the div 02, that the divs follow the normal flow of the page without needing the div 01 , that the div 01 is a background div that does not interfere with the position of the others, so it looks like this: (I did a gambiarra to show this and if it was to use the page it would be all structured)
It'sasifthediv01didnotevenexistfortheotherdivs,asifitwereabackgroundimageplacedinthe'body'attribute!
How do I do this?
--------------- Resolved ----------------
I solved it like this:
The div 02 was inside the div 01, I placed the div 02 out and left the div 01 separate from the div 02:
Before:
<header>
<div id="topo">
</div>
</header>
Then:
<div id="fundo">
</div>
<header>
</header>
I added these attributes in the div # background:
position:absolute;
z-index:-1;
How it was:
And it worked, thank you all!