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

  • P

    @jcovington16

    Submitted

    Is there a source to use to help me better understand css and the best practices. I'm terrible with css and often times I just don't know where to start. I do have some experience with css, but I don't practice with it as much as I should. I am more of a backend developer, but I'm aiming to become a full stack developer.

    @DammyShittu

    Posted

    Hi Joshua, Great submission there! I'd advise you to check the following to get better at CSS:

    1. Codecademy.com (Learn CSS course)
    2. Freecodecamp
    3. Traversy Media on Youtube. These should help.
    0
  • Shivam Chandra• 110

    @shivamchandra75

    Submitted

    how to make the text of the button element transparent.

    @DammyShittu

    Posted

    Hi Shivam, Great work!

    For the buttons, please give the "Learn More" text of each section the same color as the background-color of the section it is in. What I mean is;

    `#card1 button {

    color: hsl(31, 77%, 52%);

    }`

    To make the button element transparent, please add;

    `button:hover{

          background: inherit;
          color: #fff;
          border: 1px solid #fff;
    

    }`

    That should fix it.

    Nice one Shivam!

    0
  • LisFoS• 40

    @LisFoS

    Submitted

    I'm still new at HTML/CSS and, this is my first time doing a project without a tutorial. I hope to hear any feedback to improve my skills :)

    @DammyShittu

    Posted

    Hi LisFoS, Well done on the submission. It looks really nice. The desktop design is amazing and responsiveness isn't really 100% but we keep learning. For the "container" class, since you would want the background color to cover the entire page, then I'd advise you set the width to 100%.

    I also worked on this a while ago and you can check it out. Here's the repo link: https://github.com/DammyShittu/Preview-Card.

    Great work!!

    0