Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Ar• 420

    @abdmud

    Submitted

    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!

    elidrc• 80

    @elidrc

    Posted

    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>
    
    • Try to use rem unit measure instead px here you can find a good explanation of why use the rem unit.

    I hope this help you to improve your code. Happy codding.

    0