@wisny24Submitted about 1 year ago
Can somebody help with responsiveness on phones?
Can somebody help with responsiveness on phones?
Utilize media queries for different screen sizes.
@media (min-width: 768px) { .left { background-image: url(../images/image-product-desktop.jpg); } }
From 768px onwards, the image from the specified URL will be displayed. Outside the media query, another URL will be shown for screens smaller than 768px.