@abdmudSubmitted almost 2 years ago
I found combining and rotating the background images quite difficult - I am aware that I had to use transform to achieve this but couldn't manage to replicate the design. Any suggestions are welcome!
I found combining and rotating the background images quite difficult - I am aware that I had to use transform to achieve this but couldn't manage to replicate the design. Any suggestions are welcome!
Hi @abdmud,
Good solution, here you have some feedback:
Try to use the background css properties instead of img tag.
Use main tag to contain the card component.
Try to use the follow structure for the card component:
<article class="card">
<div class="card-header">
</div>
<div class="card-body">
</div>
<div class="card-footer">
</div>
</article>
I hope this help you to improve your code. Happy codding.