Have you ever considered if it would save space to print out an entire image using CSS and HTML pixel by pixel? I'm not referring to using background-image
or anything like that, but something along these lines:
<div style="height:1px, width:1px, background-color: black;" >
<div style="height:1px, width:1px, background-color: red;" >
<div style="height:1px, width:1px, background-color: blue;" >
Imagine creating a complete photo using CSS pixels. It may sound crazy, but could it actually work?