The div structure is -
<div class="parent">
<div class="left float-start"></div>
<div class="right float-end overflow-y"></div>
<div>
Now,
For the left child -
For the right child -
How do i do this only using css?
Any help would be appreciated!!
@Ashley you can use this css for this problem.
<div class="parent">
<div class="left float-start"></div>
<div class="right float-end overflow-y"></div>
<div>
// For equal height of the div CSS:-
.parent {display: flex;}
/***** for mobile view *****/
@media (max-width: 767px) {.parent { flex-wrap: wrap;}}
// this is break the column according to the width of the div