I am facing an issue while saving an image from Photoshop for use on a web page. The image appears to be displaying at double the size on my website compared to how it appears in Photoshop. It also seems slightly blurry as if it has been magnified by 200%.
The dimensions of the image are 600px x 165px, and the CSS code used for styling the image is:
display: block;
width: 600px;
height: 165px;
background: transparent url(logo.png) left top no-repeat;
text-indent: 100%;
overflow: hidden;
white-space: nowrap;
I'm curious why Chrome is rendering the image at twice its original size compared to Photoshop. How can I adjust the display settings in Chrome to show the image correctly?