Skip to content
Myles Braithwaite edited this page Feb 26, 2016 · 1 revision

Wrap some words that can look like other words if letter spacing is off.

Input:

<p>{{ "There’s more to love with every click." | letter_spacing }}</p>

Output:

<p>There’s more to love with every <span class="fix-letter-spacing">click</span>.</p>

Example CSS:

.fix-letter-spacing {
   letter-spacing: 0.3em;
}
Clone this wiki locally