The goal is make the absolute-position element align left (achieved by default) but then also supersede the alignment to not extend out the right of .row.
- In Summary: need to achieve a scaling solution so as the page grows [it aligns left] and shrinks [it aligns right].
<div style="display: flex; position: relative; padding: 10px; background: deepskyblue; max-width: 350px">
.row
<div style="width: 150px">
.col
</div>
<div style="position: relative; padding: 10px; background: blueviolet; width: 150px">
.col
<label for="date">
<b>
Pick Date
</b>
</label>
<div id="date_picker_listener" style="position: static; width: 100%; background: green">
#date_picker_listener
<input id="date" type="text" placeholder="mm/dd/yyyy">
<div style="position: absolute; width: 250px; height: 50px; background: red; left: 0">
Absolute
</div>
</div>
</div>
</div>
I got the solution!