I have system with following configuration:
When I open same website on both Firefox and Chrome, I could see a difference in image resolution. Firefox resolution is better than Chrome. Why is it so? Is it an issue with Chrome or Ubuntu ?
11 Answer
The image in question () is 547 pixels wide and 46 pixels tall. When displayed in its natural size, the image looks the same in all browsers.
For reasons unknown, the designers of the website have decided to display it with a width of 480 pixels.
This means that the browser must scale the image down. Each browser uses its own scaling algorithm; as you have noticed, Firefox and Chrome use different scaling algorithms, which give visually different results.
Morality: use bitmapped images at their natural dimensions, or else users of different browsers will see subtly different pictures.
1