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

  • the-benn 30

    @the-benn

    Submitted

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

    I'm proud I was able to complete the challenge, and I look forward to completing more challenges in the future. I would like to make my work faster next time. I took too much time building this QR code, and I would like for my time frame to be faster. With time I will, hopefully.

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

    I still need a little help with my CSS now though. I'm currently a work in progress.

    CyPhEr420 380

    @CyPhEr420

    Posted

    Get into a habit of writing classes to the elements as much as possible, use Flexbox to make layouts easier, and look at other people's code to see how they did it.

    Marked as helpful

    0
  • CyPhEr420 380

    @CyPhEr420

    Posted

    In your section, you can just give

    .section{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    

    The images are big because you set your box class to 900px and 800px width with media queries and you have set the image 100% so it's taking the width of the box.Just give one main width for the box. If you use the above CSS you do not have to use media queries because it will adjust on its own.

    And for the main element its does not have to be that complicated just try and rework how you structure it and try using flex maybe it will be easier

    Marked as helpful

    0
  • Om Jha 20

    @blzee-maker

    Submitted

    1. How can make a site be more Responsive to multiple devices? what is a must to know for Responsive sites?

    2. I think the code I have provided is a little complex. what can be a much simpler option that satisfies all the required needs?

    3. What else can be done to cross the perfume's MRP value(169.99)? Aside from using the hr tag.

    CyPhEr420 380

    @CyPhEr420

    Posted

    use flexbox it will make your code simple you will not have to use margin so much. Try looking at other people's code and try to figure out what they r doing

    0