2
If I have a div inside another div:
<div id="div1">
<div id="div2"></div>
</div>
And for div1 I set position Absolute:
#div1 {
position: absolute;
}
The div2 will also have position Absolute?
2
If I have a div inside another div:
<div id="div1">
<div id="div2"></div>
</div>
And for div1 I set position Absolute:
#div1 {
position: absolute;
}
The div2 will also have position Absolute?
Browser other questions tagged css
You are not signed in. Login or sign up in order to post.
Yeah, that’s called a waterfall effect.
– Francisco