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

  • @Bravonoid

    Submitted

    As this is my first project, I would love to get some feedback or even critics about my code, since i am new at programming, I would really appreciate all the feedback, especially at common mistakes on coding or even some minor mistakes that may become a bad habit. Thanks in advance.

    @saniyasaher20

    Posted

    I only saw the output result and not the code. But the output is really good. Keep it up! 👍

    0
  • @saniyasaher20

    Posted

    I think you should add ------------background-repeat: no-repeat;--------------- to the tag where you have applied the background-image. This will help in stopping the repetition of background image.

    Marked as helpful

    0
  • @saniyasaher20

    Posted

    body{ display: flex; align-items: center; height: 100vh; }

    Add these three lines to your body tag to vertically align the .container

    Explanation: In your code, body is parent tag of the card( .container ) and card is child. To align the child you can add 'display: flex;' to your parent tag and then use other flex properties to align the child either vertically or horizontally. the next line align-items: center; will align the child means card to center. But make sure you parent have space to give to the child that's why third line comes handy. Add height: 100vh; to body.

    Marked as helpful

    0