In css how to center a div in between a div without touch the property of parent div. Only change the property of Child Div... Like:
<div style="width: 200px; height: 200px; display: flex; background: #f00;">
<div style="height: 50px; width: 50px; background: green;">
<!-- Change the property of this div -->
</div>
</div>
I don't want to need parent css change.. anything else what can you do...