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
    Asish Patnaik• 160

    @asishPatnaik2000

    Posted

    Hi, some resets I constantly use is for all elements I make the elements border-box

    *{ box-sizing: border-box }

    what it does is considered the border, margin, etc. defined by you is also considered for size of an element making the UI more consistent. If you don't add this border size and an elements width are calculated separately for an element. What you can also do is make image as block elements so when adding image in UI doesn't have its default inline behavior and takes entire block space. This is optional only if you need it, you has add, for me it helped to get more control over inline elements like img element

    Learn more about resets from here:

    css-reset

    Hope this helps

    Marked as helpful

    0
  • P
    Asish Patnaik• 160

    @asishPatnaik2000

    Posted

    Hi @StivenZ! for this How can you host several "builds" in GitHub pages?

    A way to do this is just put different challenges in different folders under same repository.

    After you host the repository you can just use /<folder name> to see your project

    for Example you can check my repository I have created for newbie challenges :

    https://github.com/asishPatnaik2000/FrontendMentorNewbiePractice

    After repository is hosted I just have to access it using folder name: example 1: https://asishpatnaik2000.github.io/FrontendMentorNewbiePractice/product-preview-card-component-main/

    Similarly just change file name another challenge solution should show up.

    Hope this helps

    1