Generate 1x, 2x, 3x image export dimensions for retina displays.
<img srcset="image@1x.png 1x, image@2x.png 2x, image@3x.png 3x" src="image@1x.png" alt="">/* Display 400×300 → export these sizes */
img { width: 400px; height: 300px; }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
img { content: url(image@2x.png); /* 800×600 */ }
}