Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
12
Comments
12

Dilhan Boca

@dboca93Melbourne220 points

I'm an aspiring Web Developer located in Melbourne, Australia

Latest solutions

  • Suite -- Using SASS, Grid, Flexbox & Position

    #sass/scss

    Dilhan Boca•220
    Submitted 11 months ago

    0 comments
  • Art Gallery -- Using SASS & Grid

    #accessibility#sass/scss

    Dilhan Boca•220
    Submitted about 1 year ago

    2 comments
  • Four Card Feature __ #GRID __ #SASS __ #ResponsiveDesign

    #accessibility#sass/scss#progressive-enhancement

    Dilhan Boca•220
    Submitted over 1 year ago

    1 comment
  • Huddle Landing Page: CSS Grid, SASS, & Keyframe animations

    #sass/scss

    Dilhan Boca•220
    Submitted over 1 year ago

    0 comments
  • Results Summary Component Main -- CSS GRID / SASS

    #sass/scss

    Dilhan Boca•220
    Submitted over 1 year ago

    0 comments
  • Stats Preview Card Component

    #sass/scss

    Dilhan Boca•220
    Submitted over 1 year ago

    1 comment
View more solutions

Latest comments

  • AmanKaushik975•60
    @AmanKaushik975
    Submitted 11 months ago

    grid

    2
    Dilhan Boca•220
    @dboca93
    Posted 11 months ago

    Great job !

    Keep in mind it's a good idea to throw a min-width: 320px (or the equivalent rem) onto the body element, to prevent it from collapsing at extremely small screen sizes.

    Perhaps you could use the article element instead a plain div for the cards, this would incorporate more semantic html. Also, try if possible to include an explicit width and height for the img elements, this will help the page load faster.

    Enjoy your coding journey !!!

  • Satyam-Pandey677•220
    @Satyam-Pandey677
    Submitted 11 months ago
    What are you most proud of, and what would you do differently next time?

    Now understand the all css properties and now confident and make new things and now now I'm no think to start any project

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

    none

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

    none

    Four card feature section

    1
    Dilhan Boca•220
    @dboca93
    Posted 11 months ago

    Hello,

    Well done on submitting the task. I hope you are enjoying your coding experience on FM. I would note that generally developers create websites down to 320px width; and your website doesn't scale down responsively after 540px in size.

    I noticed you have perhaps one too many div containers in your html code. If you have time, please look at my solution, particularly the code I applied to ".grid__layout" which will provide the core structure to the card container:

    https://fm-four-card-feature-eta.vercel.app/

    Please mark this comment as helpful if you find it such, All the best :)

    Marked as helpful
  • Erfan•310
    @ERFAN-REVENANT
    Submitted 11 months ago

    nothing fancy

    1
    Dilhan Boca•220
    @dboca93
    Posted 11 months ago

    Hi Erfan,

    Good work on submitting tasks on FM. I hope you're enjoying your coding experience.

    In order to get your card in the middle of the page properly, try putting the card container in a <main> element, than apply the following CSS code to that <main> element:

    main {
        display: flex;
        width: 100%;
        min-height: 100vh;
        align-items: center;
        justify-content: center;
    }
    

    That should bring the card into the middle of the page. I hope you found this information helpful, please mark it as helpful if you have time.

    Regards Dilan Boca

  • Ahmed Salah•30
    @AhmedSalaah0
    Submitted over 1 year ago

    Responsive page, use Css Flex-Box

    1
    Dilhan Boca•220
    @dboca93
    Posted over 1 year ago

    Hello Ahmed,

    I hope your enjoying your coding experience. There is a particular issue with your code that if you correct, your code will look much closer to the design file. Your code on the body element is currently like below:

     body {
        background-color: hsl(217, 54%, 11%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    

    But if you change it to this:

     body {
        background-color: hsl(217, 54%, 11%);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    

    You should see an immediate difference. I didn't have time to review the rest of the code. However, I also noticed that you need to put a min-width (maybe around 320px) on the parent container. You can adjust the height/width of the image as needed. Also, if you have time learn about semantic html, as this is important in the future. Please if you find my comment helpful, mark it as helpful.

    Feel free to add me on twitter: @dboca93 Thanks !

  • Elson Martins•150
    @ElsonMartins
    Submitted over 1 year ago

    Land page criada com GRID e MediaQuery

    #accessibility
    3
    Dilhan Boca•220
    @dboca93
    Posted over 1 year ago

    Hello @ElsonMartins,

    Congratulations on submitting this task. I sincerely hope you're enjoying your coding experience. Looking at the design file, the central container needs to be centered both horizontally and vertically in the middle of the page. I found some code you wrote which is preventing this from happening, which is:

    @media (min-width: 22rem)
    body {
        min-height: 0; 
        padding-top: 5rem; 
    }
    

    If you remove this code, the other code you placed on the body, which is much better, will be able to shine through:

    body {
        font-family: 'Outfit', sans-serif;
        background-color: var(--light-gray);
        min-height: 100vh;
        display: grid;
        place-content: center;
    }
    

    I wish you all the best for the future. Please mark this comment as helpful if you can ! Please feel free to add me on Twitter if you like : @dboca93

    Marked as helpful
  • Ryan Abdaul•320
    @RyanAbdaul
    Submitted over 1 year ago

    Flex, Responsive, + some additions

    1
    Dilhan Boca•220
    @dboca93
    Posted over 1 year ago

    Hey Ryan,

    Hope you're enjoying your experience on Frontend Mentor. Your site is pretty good. However, when the screen size is between 770px and 900px wide (roughly) the creative wide-scrollbar you've created laps over one of the cards. Also, you could maybe use a bit more semantic html in your code.

    If you have time, maybe you could look at my page: https://fm-four-card-feature-eta.vercel.app/

    I believe that CSS Grid works a bit better on this design than flexbox.

    All the best, Please mark this comment as helpful! Feel free to add me on twitter: @dboca93

    Marked as helpful
View more comments
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub