Finding difficult to implement hamburger menu as well as mobile. I am unsure about the ways I could of handled this better, do I use height for all divs so it can be even or how? Any recommendations or resources that can help me understand will be appreciated.
Sören Maschmann
@DontMashAll comments
- @JimmyJimenez2400Submitted about 2 years ago@DontMashPosted about 2 years ago
You did a really good job Jimmy! The colors and composition of elements are close to the solution.
I would like to point out one small thing which would solidify your solution: The alignment of the elements relative to each other is incorrect. You might want to look up
display: grid
property. This is a resource I would suggest. Cheers ;)0 - @Shun-planetSubmitted about 2 years ago
I have studied and applied the css grid to my code, but I'm still having issue as regards to the mobile view. Please check the mobile query and let me know what I did wrong. Thanks.
@DontMashPosted about 2 years agoGreetings Shun,
nice try on this challenge!
Regarding your question, it is definitly possible to query different screen sizes in CSS via Media Querries.
You may also have a look at CSS-Grids to align the content elements in even relation to each other.
Marked as helpful1 - @yozan21Submitted about 2 years ago
I've just started in web development. The difficult part was the positioning of the elements.
I'm unsure of the full size of the page (I think it is larger than it should be).
@DontMashPosted about 2 years agoFirst of it's amazing to see what you have accomplished early on.
Concerning your placement/positioning of the elements you should have a look at flex/grid display options. These will help you position elements in relation to each other.
Some learning resources:
There are also many interactive learning application out there. Have fun coding!
0