I'm converting a Photoshop image to HTML, and I noticed that when I set the font size to 11px it gets blurry, but in Photoshop it still looks fine.
So after playing around I discovered that if I set the font type option to smooth
instead of none
, Photoshop also makes the font blurry.
So, how can I make the font sharper using CSS so that it mirrors Photoshop's font rendering? I'm using Arial as my font. Here's my CSS right now:
.user_status {
color: #666666;
font: Arial;
font-size: 11px;
display: block;
margin-top: 10px;
}
Thank you all for you awesome answers, it helped me a lot, i wish i could chose more then 1 answer as the correct one...