This project was fun to build since its been a while I built anything using Grid-layout. And I am happy with the outcome too. #HappyCoding
Christian
@UtopicUnicorn995All comments
- @NaatikyereSubmitted 11 months ago@UtopicUnicorn995Posted 11 months ago
Hello.. Your stylesheet is named 'style.css' in your HTML and its actual file name is 'Style.css', It might be okay in your code editor but when it's uploaded it won't be found.
0 - @jhkuahSubmitted over 1 year ago
Feedback is welcome to improve styling or coding formatting
@UtopicUnicorn995Posted over 1 year agoHi, You may have forgotten to add background colors .items and also no colors for .title p, the <main> width is also different from the design.
But overall great Job!
0 - @aimeempereiraSubmitted over 1 year ago@UtopicUnicorn995Posted over 1 year ago
looks great.
But I would recommend removing the margin in body to center it better. Anyways great job.
0 - @Dipesh-sapkota1Submitted over 1 year ago
I was having problem with switching image form mobile to desktop.
@UtopicUnicorn995Posted over 1 year agoHi,
I think you can use media queries in css where you change the image url OR you could create 2 <img></img> in HTML and use this:
.mobile--img{ display: none; } @media (max-width: 767px){ .mobile--img{ display:block; }
same with the desktop img.
There's many ways to fix your problem
Marked as helpful0