There are 2 images: one with a resolution of 100 to 100, the other 300 to 300. Will they look the same or is the second option better?
<img id="aaa" src="1.png" />\\100 на 100 <img id="aaa2" src="2.png" />\\300 на 300 <style> #aaa { position: absolute; top: 0px; left: 0px; } #aaa2 { position: absolute; top: 0px; left: 120px; width: 100px; height: 100px; } </style>
There is such a fashion in the new technology: to make a large resolution (but with small sizes). That is, there are a lot of pixels per cm, or an inch squared (compared to earlier displays). According to the logic, there with a higher resolution it will be better than 300 by 300 than 100 by 100. Is this so or not? I just think that in such an example (100 by 100 with high resolutions) you will need to show 1 pixel of the image by several pixels. And if 300, then I think it will be the norm, or not? But if you look at the 300 to 300 image on the old display, will it look like without antialiasing? Does CSS compress images, or does it make changes to the image resolution before displaying on the screen? Or is it all nonsense?