mateuszkocz / 3l

Lots of Love for LESS
http://mateuszkocz.github.io/3l/
150 stars 22 forks source link

an idea: font-smoothing #9

Open stevenvachon opened 10 years ago

stevenvachon commented 10 years ago

I know that it's WebKit only, but it still beats adding a vendor prefix:

.font-smoothing ()
{
    -webkit-font-smoothing: antialiased;
}
mateuszkocz commented 10 years ago

Thanks for the idea, but as far as I know this property was made useless in Chrome. Also it's a one-time usage property (you mostly apply it to an html or a body element), so creating a class for it seems like a bit too much compared to the profit from using it.

stevenvachon commented 10 years ago

Still works here and I just updated a few seconds ago. I don't use it on the html or body element but instead use it on header tags only because the fonts are typically much larger.