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

  • @Aazeez257

    Submitted

    how do I align this card vertically centered, Somehow I centered it using vh25, but Im not sure its the correct way of doing it, Kindly help me with this, Thank you

    Parvez785 180

    @Parvez785

    Posted

    To center the card vertically Use below properties on body or container you are using

    display: flex
    justify-content:center;
    align-items:center;
    height:100vh
    
    2
  • Parvez785 180

    @Parvez785

    Posted

    Instead of using margin-top and bottom on body.container use below code

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    

    Marked as helpful

    0
  • Ahmedkh24 20

    @Ahmedkh24

    Submitted

    Hello, folks!

    This is my second HTML/CSS project and it's about building a card component, and I learned a lot of new CSS properties in this project such as "max-width", "text-decoration", "over-flow", "box-shadow", "transition" and some Pseudo classes such as ": hover, active, link, visited ". So, please give it a look and I wish to get feedback on it and what could be done better.

    Thanks in advance!

    Parvez785 180

    @Parvez785

    Posted

    Hey, there congrats on completing challenge,the image is not properly positioned use /background-size: contain;/ to match background image position also u have not used background-color for body as below background-color: hsl(225, 100%, 94%); make above changes to match the design

    Happy coding ! and great work done

    Marked as helpful

    0
  • @fernandojeffe

    Submitted

    I don't know why but I couldn't use the second font it didn't recognize Family: [Fraunces]

    Parvez785 180

    @Parvez785

    Posted

    Hey, there congrats on completing challenge , You can try adding font fraunces in HTML markup in head.

    <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@500&display=swap" rel="stylesheet">

    Also you design is not responsive for mobile version, and remove black border displaying around button.

    Let me know if this was helpful

    Marked as helpful

    0