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

Submitted

Fylo Data Storage Component

Peculiar 90

@s9trange

Desktop design screenshot for the Fylo data storage component coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


Hi everyone...so glad I was able to complete this challenge, even though I still have some challenges and id be grateful to get answers to my questions.

So I was able to code the desktop design, my main issue is with the mobile design. I tried using media queries for responsiveness but it didn't work. Please how do I go about this??

Thanks so much in advance already. All feedback will be highly appreciated.

Community feedback

P

@joshdail

Posted

Here are a few things I've found helpful:

Try to avoid setting definite widths when you can. I will usually set a width of 100% and then a max-width, like this:

.section-menu {
  width: 100%;
  max-width: 22em;
}

That way, the element won't go wider than what you want, but it can also shrink with the page.

Also, if you're using Flexbox for your main page sections, then when the width goes down, you can switch the flex-direction from row to column and make any other changes in the flex layout. So for example here, when the width drops, the sections shift from being in a row to stacking on top of one another, being centered, and being the same width:

@media (width < 900px) and (orientation: portrait) {
  .container {
    flex-direction: column;
    align-items: center;
    padding-inline: 2em;
     }
    .section-menu,
    .section-meter {
      max-width: 22em;
    }
  }

I had to write a lot of media queries for this project. What I found helpful was using the Chrome and Firefox dev tools, and trying out different screen sizes to see where the components started to break. Then I would write a media query to fix the problem. So I have one @media (width < 900px) with some rules, then another @media (width < 420px) with more rules, and so on. Just a lot of trial and error and experimenting until it looks the way you want it to.

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord