Letter-spacing CSS - How to set space between letter using CSS
Sometimes we need to set space between letter using CSS.
This is possible if we use the CSS property: spacing-letters.
We can set the distance between letters using either style or a style defined in CSS
Example 1:
-defined style in css:
<style type="text/css">
.spaced-letters {letter-spacing:5px;}
</style>
aply this style to a text:
<span class="spaced-letters">Example text</span>
Effect:
Example text
=========
Example 2:
-use style atributte atached to a span or other html tag:
<span style="letter-spacing: 5px;">Example text</span>
Effect:
Example text
As you see in both cases the effect is the same.