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

  • eren 270

    @erensarac

    Submitted

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

    This challange was simple as other newbie challanges. I completed the challange quickly. Next time ill try different template engines and css pre-processers.

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

    I didin't encount difficulty.

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

    I don't have specific questions about this challenge. All feedback is welcome.

    Afacanc38 20

    @alperenisa

    Posted

    Ekran görüntüsüne göre kusursuza yakın. Fakat boyutları hep piksel biriminde ayarladığınız için mobilde taşıyor. Dikey uzunluğu sınırlandırmamanızı ve width yerine max-width değeri ayarlamanızı tavsiye ederim. Ayrıca yazar kısmının kapsayıcısına flex-direction: row eklemişsiniz, ama zaten varsayılan değer bu olduğu için bunu eklemenize gerek yoktu.

    0
  • @Doscoding187

    Submitted

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

    this second challenge was similar to the first one so it helped me to build on on what i learned by solving the first challenge the introduction of new elements also helped me to learn new things

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

    it was fairly easy with very minimal challenges encountered

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

    i did not struggle with any areas in this challenge

    Afacanc38 20

    @alperenisa

    Posted

    Very good, it's almost flawless! Just put classes some meaningful names and make it a habit. When codebase grows, maintaining is getting harder, y'know ;)

    0
  • @PraneethChitturi

    Submitted

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

    I am proud of building it from scratch in HTML and CSS

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

    I am frequent user of React, so its pretty easy to build apps in that using, not going much into detail of HTML & CSS. So in this challenge, just using HTML and CSS was challenging.

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

    I am good!

    Afacanc38 20

    @alperenisa

    Posted

    You should give the container a meaning class name. If you don't make this as the complexity of the code increases, you'll have trouble with maintaining code. Check it out: https://cssguidelin.es/ https://getbem.com/introduction/

    Also:

    @media (min-width:500px){
        .container{
            width:400px;
        }
    }
    

    Instead using an media query, you can just put .container to max-width: 400px;, it is easier than, and just works.

    0