Questions tagged [letter-spacing]

a CSS property that defines the spacing between text characters

Description

The letter-spacing CSS property specifies spacing behavior between text characters. As a length, it is an animatable property.

Usage Example

#spacing_normal {
    letter-spacing: normal; /* normal spacing between 2 letters */
}
#spacing_px {
    letter-spacing: 5px; /* space of 5 pixels between 2 letters */
}
#spacing_em {
    letter-spacing: 0.5em; /* space of 0.5em between 2 letters */
}
#spacing_inherit {
    letter-spacing: inherit; /* inherit the letter spacing provided for parent */
}

References

  1. W3C Specification
  2. MDN Link
  3. Fiddle Example
143 questions
-1
votes
3 answers

My python prgram print the enlarged word vertically instead of horizontally

When a user enters a word, my Python program enlarges it with asterisks.But, when the user enters a word, it prints vertically instead of horizontally. My question is - How to pring the enlarged letter horizantally (SIDE BY SIDE) instead of…
-1
votes
3 answers

I added an operators to give spaces between the two strings but it still doesn't work

I was trying to make a name input that whenever you type a name it places on the welcome sign of the game. The only problem I am experiencing is that the name I input never has spaces between it, despite that I placed an operator to give it a…
-1
votes
2 answers

php echo changing the spacing of elements

When I do this
  • en jp ru
  • it gives me space between the a tags, with space but when I do echo '
    KAZ
    • 11
    • 1
    • 2
    -1
    votes
    1 answer

    How to modify the height on the text

    I want to reduce the height of a text, How can i do?
    AndreiN
    • 47
    • 8
    -1
    votes
    1 answer

    How can you skip a string in this code below?

    I am trying to make my message red and white respectively. I have been able to successfully make the message red and white, however the problem is that it takes in to account the spaces in the string. I am trying to make it so that only the letters…
    Junaid Razaq
    • 241
    • 5
    • 14
    -1
    votes
    1 answer

    C++ adding spaces to a string of words

    For example I have a cipher text code "KWSVVSYXKSBOKRKBNRKDKXNKNBEXUKBOKDKLKBGRO" I used some frequency analysis calculations on it and started reverse engineering to break the cipher. My Solved cipher text is "New solved cipherr text with key is…
    Caesar Krit
    • 204
    • 4
    • 19
    -1
    votes
    2 answers

    Text spacing incorrect on mobile - desktop and smaller window sizes are fine

    craigknelson I'm not great at coding - I can customize existing stuff but I'm having a lot of trouble correcting the logo/header on my page. It's just text that says "craigknelson" on the top left of the page. It works perfectly fine on desktop when…
    -3
    votes
    1 answer

    When I resize, there are gaps between the text?

    When I resize to a smaller screen, the text breaks and there are some gaps between the text. https://github.com/Mr404Found/gatsby-starter-profile-site/issues/1
    devkev1
    • 31
    • 4
    1 2 3
    9
    10