My frustration with element positioning persists:
<div id="container">
<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>
</div>
#div1 {
right:0; // I want its right border to be 0px from the parent's right border, regardless of any other div inside.
}
#div2 {
bottom:0; // Its bottom border should be 0px from the parent's bottom border, regardless of any other div inside.
}
#div3 {
margin-left:auto;
margin-right:auto;
// Should be centered within the parent...
}
Therefore, I desire for the parent to serve as the primary reference point, rather than the neighboring elements.