Latest solutions
Frontend Mentor | Loop studios
#accessibilitySubmitted about 1 year agoYep! The cards section was a quite bit challenging for me especially the ordering of cards. As, I'm still learning the grid system so I don't have much understanding on how to use
order:;
property in grid system. Any help will be appreciated😊!Recipe-page-in-React
#sass/scss#reactSubmitted about 1 year agoI need assistance on project deployment. Please help me to understand how to deploy a project and add it in the git repository. I am submitting this solution with live view error but the code is working nicely on the Visual Studio Code with live server extension. Whenever I create a project using
npm create vite@latest
everything work nicely until I execute thenpm run build
command after executing this a dist folder is automatically add to my project folder and sometimes images don't work and this time the whole project don't work
Latest comments
- @AjayKrishna55@Mini-Elliot
Good effort but you should give the value of media query like this
(max-width: 375px)
instead of:@media (maxwidth: 375px)
The CSS code you written for image resembles Sass nesting, but for standard CSS, you should not nest rules like that. Here's the corrected version:
css .image img { max-width: 450px; max-height: 750px; }
instead of:
.image img { .container { max-width: 450px; max-height: 750px; } }
Happy coding! 😄Marked as helpful