Anybody know the best (easiest) html style sheet write up to use, to make an image shrink when in a mobile brower?
You can use a CSS media query to apply CSS for devices with certain screen sizes. This should work well for your needs: @media only screen and (min-device-width: 320px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) { // YOUR CSS HERE } Code (markup): More device specific media queries here: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/