2

I am trying to create a style to define the character spacing into a text box.

For example I have this text:

Hello World!

And I want it displayed something like:

H e l l o  W o r d !

And I need this done from a style.

I tried using Glyph and Typography but no luck!

Maybe the space between letters to be defined as pixels or something similar not necessarily a space from keyboard.

Regards.

Rock3rRullz
  • 357
  • 1
  • 4
  • 21

1 Answers1

-2

have you tried letter-spacing property of css styles? For example you can create css class:

.letter10Spacing
{
letter-spacing:3px;
}
Ivana
  • 1