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 solutions

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I didn't know I could turn a P tag into a container itself to be able to center the text with flexbox. Making the process easier by separating the card into 3 parts. The picture with the name and location, the little quote, and a section for all the "buttons" to go into. That made it easier to separate them and get the spacing right and independent from the other sections. Also, takin advice someone gave me from my last project to make it more responsive to smaller view ports. I took that advice and double checked that everything still looked good on a smaller view port and wasn't cut off.

    What challenges did you encounter, and how did you overcome them?

    At first it was trying to get the text centered in the buttons. If i added padding or margin it made the buttons get wonky so figuring out that I can make a P tag its own container and center it with flexbox like I do everything else was great!

    What specific areas of your project would you like help with?

    I am just trying to get more comfortable with flexbox and what it can do, but it's the easiest way to move things around and get things centered. As I get through the challenges I am trying to remember what worked and what didn't so I am not just doing so much trial and error and hoping to complete the projects quicker. They definitely shouldnt take as long as they do sometimes because there isn't much too them.

  • Submitted


    What are you most proud of, and what would you do differently next time?

    Knowing how to get that learning button style thing below the image and figuring out how to get the name next to the avatar.

    What challenges did you encounter, and how did you overcome them?

    Getting everything centered and then getting the text to be left but still in line with the image. I had to remember that CSS is cascading and if I added text-align: left it would override the original text-align: center

    What specific areas of your project would you like help with?

    This one went a lot smoother than the first challenge.

  • Submitted

    QR Code Box

    • HTML
    • CSS

    2


    What are you most proud of, and what would you do differently next time?

    Centering everything. To center the box itself I used margin: auto;. To center the image and text inside I used flex at first but realized I just needed text-align: center;.

    What challenges did you encounter, and how did you overcome them?

    Getting the HTML and Body to take up the whole space of the page. I assumed they would fit the container automatically.

    html{ min-height: 100%; margin: 0;

    }

    body{ min-height: 100vh; margin: 0; background-color: var(--slate-3); }

    What specific areas of your project would you like help with?

    I am hoping my solution isn't too much and could have been accomplished with way less code.