2
I need div 01 not interfere in the positioning of the other Ivs, such as div 03 for example, or is that div 03 comes right after div 02, that the Ivs follow the normal page flow without needing div 01, div 01 is a bottom div that does not interfere in the position of the others, that looks like this: (I did a trick to show this and if I used the page would be all destroyed)
It’s as if div 01 didn’t even exist for the other Ivs, as if it were a background image placed in the body attribute'!
How do I do that?
--------------- Solved ----------------
I resolved so:
Div 02 was inside div 01, I put div 02 out and left div 01 separate from div 02:
Before:
<header>
<div id="topo">
</div>
</header>
Afterward:
<div id="fundo">
</div>
<header>
</header>
I added these attributes in the background:
position:absolute;
z-index:-1;
Model of how it turned out:
And it worked, thank you all!