>>1478responsive design isnt just 'make it mobile first' and call it a day. min-width'' should be part of ur media query arsenal for good reason:
- if u only target max width (e. g, @media(max-width: 768px)), you might miss important layout adjustments at wider screens
>example site looked great on desktop but broke when user resized window to medium sizeu need both min and max widths, e. g.:
@media(min-width:901px) {
/
styles for wide screen /
}
this ensures ur design stays intact across all sizes without overcomplicating things.
@media(max-width:768px){ /'' mobile stuff here/}so remember to use
min-width as needed, not just max. keeps everything balanced and responsive!
this is fine everything is fine