I design / manage a user interface for a moodle LMS, and other people are in charge of populating its content, including many of its non-gui images, and some of the contents HTML code. I have no control over the content's HTML code, but I write the style sheets.
For other situations where I've needed to implement some sort of rules over the behavior of images, which other people place into the courses, I've been able to do things like set a minimum width on all images within the main content div, preventing the images from interfering with the course's (page's) layout on things like mobile devices.
Does, or can, anyone think of a good strategy for handling retina images, that is under the conditions that I control the CSS, but not the HTML or the images being used?
The images will also vary in size.
I was thinking something like setting up a media query to detect retina display, then adding the following:
#div_that_i_want_to_control_images_for img {height:50%; width:%50 }
Would this work to have any image in that div display in a way that takes advantage of a retina display?
Does anyone have any other methods, or thoughts on this?