Latest solutions
Responsive testimonial card section page using CSS Grid and Vuetify
#vuetifySubmitted 6 months agoHow could I use Sass better on my solution? Any suggestions on better font-size styling?
Responsive four card feature section with Vuejs, Vuetify and CSS grid
#vue#vuetifySubmitted 7 months agoIf testing the layout on Chrome devtools, layout is well detected and changed according to screen orientation but when changing device, I have to make a manual refresh to the page. I wounder if I´m overthinking as this kind of situation won´t come up in real life. Or am I mistaken?
Responsive product preview card with Sass
#sass/scssSubmitted 10 months agoThere are so many different devices with different screen resolutions that people use? How to make the responsive component styling simpler? What tricks and tools to you use? I use Chrome DevTools to test the views.
Responsive recipe site using React, Next.js, Material UI, fetch API
#fetch#material-ui#next#reactSubmitted 10 months agoResponsive multi step form using React, Reactstrap and Redux-toolkit
#react#react-router#redux-toolkitSubmitted about 1 year agoResponsive E-commerce page using React, React Bootstrap and Redux
#react#redux#bootstrapSubmitted almost 2 years ago
Latest comments
- @Pan1402Submitted 7 months ago@Mary2021Posted 6 months ago
Always include width and height size attributes on your images and video elements.
Otherwise layout looks fine on different screen sizes.
0 - @VeseMir2kSubmitted 7 months ago@Mary2021Posted 7 months ago
Nice work Adam! Your solution is as close to the design as it could be.
You could add a better looking layout for screen width 1119px and less (tablet) by adding max-width to article element with class name card and align it to the centre.
I used Vuetify v-card for this solution.
0 - @Mary2021Submitted 10 months agoWhat are you most proud of, and what would you do differently next time?
I tried styling with Sass. On this project used only Sass variables, next time would like to try also nesting and mixing.
Card images for mobile and desktop view are added with CSS:
.card-image { content:url('images/image-product-mobile.jpg'); }
I used mobile first approach. This way mobile view responsiveness was easily achieved with flex-direction default styling.
What challenges did you encounter, and how did you overcome them?.card { display: flex; flex-direction: column; }
Most challenging for me was to make responsive the larger views, because the width varies in very wide scale. I tried to adjust card text area padding and text size with media queries but I´m not quite pleased with the final result.
What specific areas of your project would you like help with?There are so many different devices with different screen resolutions that people use? How to make the responsive component styling simpler? What tricks and tools to you use? I use Chrome DevTools to test the views.
@Mary2021Posted 10 months agoI removed CSS content:url property and added html picture element to the solution.
0 - @Eugene-akSubmitted 12 months agoWhat are you most proud of, and what would you do differently next time?
I am proud I finally completed this challenge completing this challenge. It had me for days.
What challenges did you encounter, and how did you overcome them?I found it difficult to display either the desktop image or mobile image based on the viewport width. I initially used state and the useEffect hook in next js but it didn't entirely solve the problem. I also tried the css ::after pseudoclass and that also brought about new issues. I later found out about the html picture element which was just suitable to solve this.
What specific areas of your project would you like help with?I will learn more about how the html picture element is used and best practices.
@Mary2021Posted 10 months agoNicely accompliced solution, Eugene! I like the clean and simple structure of your Sass code.
Found couple of good sites explaining html picture element:
- Better responsive images with picture element
- How to Use HTML5 “picture”, “srcset”, and “sizes” for Responsive Images
I find especially handy, that its possible to add different images for instance tablet(landscape/1200px) and desktop(portrait/1200px).
<picture> <source media="(orientation: landscape)" ... /> <source media="(orientation: landscape) and (min-width: 1200px)" ... /> </picture>
I fond a little bug in your solution. In mobile view content is longer than class main (home.module.scss) height. It resolved when removing the height property.
.main { height: 100vh; ... }
Marked as helpful1