Mobile app version of vmapp.org
Login or Join
Ann6370331

: Font requirement with large Spacing I am currently using custom spacing for a design that I am working on. But further discussion with an app developer, I was told that custom font spacing

@Ann6370331

Posted in: #FontRecommendation #Fonts

I am currently using custom spacing for a design that I am working on. But further discussion with an app developer, I was told that custom font spacing would not be possible. I just want to confirm if there are fonts similar to the Lobster font, with a default spacing larger than Lobster.

Many thanks in advance,
Mayank

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ann6370331

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sims5801359

Using proper typographic terminology will help us understand what you are asking here.

Tracking, the space between all characters, can be manipulated with CSS using the letter-spacing property. This has wide browser compatibility and shouldn't be an issue at all.

Kerning, the space between two characters such as within a logo, is not manipulable with CSS. CSS can only act on discrete elements in the DOM.

However, if you are ok with adding some cruft markup it is possible to do something like this:

<p class="company-name">Kern Me Please</p>


Insert a few spans, enclosing the kerning pairs:

<p class="company-name">K<span class="kern-er">er</span>n Me P<span class="le">le</span>ase</p>


And use the letter-spacing property to style those spans.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme