I work with a project designer. This designer, unfortunately, really got sick and is in the hospital. I am working on a design and convert it to HTML / CSS. Before leaving, the designer gave me some information about some texts. For the text they told me:
Font face: Arial, Tracking / Letter spacing: 72, Line spacing: 21
I know that in CSS I can create a class with this information. For example, I can do
.myClass {
font-family:Arial;
letter-spacing:72;
}
I have two questions, although I can not understand
- The distance between the letters is too great when I do this. This is not like the original design. Is there any single information I need to add? Is there a standard unit that I should be aware of?
- How to get spacing between 21 (unit?) In CSS?
Thank!