How do i make product images appear small and grid for e-commerce site while maintaining their Quality and graphics🙏🏽 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do i make product images appear small and grid for e-commerce site while maintaining their Quality and graphics🙏🏽

How do i make product images appear small and grid for e-commerce site while maintaining their Quality and graphics🙏🏽

28th Apr 2024, 8:49 AM
GHOST
GHOST - avatar
2 Answers
+ 2
You can upload various size files, resize them in your graphics program. Then using media queries, load up the correct image. Have a look online.
28th Apr 2024, 10:30 AM
Ausgrindtube
Ausgrindtube - avatar
+ 2
You can use the CSS grid-template Property https://www.w3schools.com/csSref/pr_grid-template.php There is an example provided on the page. But it does not include the image. https://www.w3schools.com/csSref/tryit.php?filename=trycss_grid-template Here is how to add the image. <div class="grid-container"> <div class="item1"><img src="image1.jpg" alt="Image 1"> </div> Also set the image size in CSS. img { width: 150px;}
28th Apr 2024, 11:32 AM
Chris Coder
Chris Coder - avatar