Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to do you use letter-spacing smaller than 1px

I have a web font that I am trying to get the spacing just right. I have it set at letter-spacing: .03px. Works great in firefox 5, But i know this doesn't work across browsers. Is there anything i can do to help this? or what browsers would this work in?

font-family: 'FSS Light',Times;
font-size: 15px;
letter-spacing: 0.3px;
line-height: 20px;
margin: 0 0 1em;
like image 567
eman Avatar asked Jul 27 '11 20:07

eman


People also ask

How do you control letter-spacing?

Select the text that you want to change. On the Home tab, click the Font Dialog Box Launcher, and then click the Advanced tab. Note: If you're using Word 2007 the tab is called Character Spacing. In the Spacing box, click Expanded or Condensed, and then specify how much space you want in the By box.

What is the ideal spacing between letters?

General Rules for Letter Spacing Line height with at least 100% space between the two lines is often the perfect measurement for letter spacing. However, if the line height is above 120%, it reduces the space between the letters and would require some adjustment.

What is EM in letter-spacing?

An em is a unit in the field of typography, equal to the currently specified point size. For example, one em in a 16-point typeface is 16 points. Therefore, this unit is the same for all typefaces at a given point size. The em dash — and em space are each one em wide.


1 Answers

Have you tried with em

letter-spacing: .5em;

Yes Ems works on all browsers and they are becoming increasingly popular in web documents due to scalability and their mobile-device-friendly nature.

like image 95
Warface Avatar answered Sep 19 '22 06:09

Warface