I am experimenting with rendering a list of <el-card>
items using a transition-group
.
Each card has a front and back side that flip when a button is clicked.
To achieve a smooth flip transition, I need to apply the style:
position: absolute; top: 0; left: 0
to the cards. However, this causes all the cards to be stacked on top of each other.
If I remove this style, the cards are displayed side by side but the flip effect shows the back
item under the front
item.
You can view an example here.
I would greatly appreciate any assistance in resolving this issue.
Thank you.
Michael