Is there a way to dynamically set the max-width of one div to match the width of its sibling in Angular 6?
In simpler terms, can the max-width of "child_two" be made equal to the width of "child_one" without knowing the width of "child_one" until it is rendered?
`<div class="parent-div">
<div id="child_one" class="child-div"> </div>
<div id="child_two" class="child-div"> </div>
</div>`