Forum Moderators: bakedjake
... still quite small pixel size.
unless I can make them self adjust?Images are happy to self adjust. No need to restrict their size to some limit if you use CSS to set the maximum width to 100%:
img { max-width: 100%; } <meta name="viewport" content="width=device-width, initial-scale=1"> allows the device to make adjustment for their internal device pixel ratio so that css elements are not limited to fixed pixels. img { max-width: 100%; }
unless I can make them self adjust?alone and modified by the recommendation of relying on a container for managing max width. We aren't working from any specifics so I didn't try to guess what else is there. It just seemed that it was unfamiliar as a method so I mentioned it.
What screen sizes are people designing for, and is there an agreed standard 2020?as the ideal way to deal with images, but there's more than one way to do most anything we do to manage layouts and images.