- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add or subtract space between the letters that make up a word with CSS
To add or subtract space between the letters that make up a word, use the letter-spacing property.
Example
You can try to run the following code to implement letter-spacing property:
<html> <head> </head> <body> <p style = "letter-spacing:4px;"> Asia is a continent. </p> </body> </html>
- Related Articles
- Add or subtract space between the words of a sentence with CSS
- Add space between pagination links with CSS
- Add space inside a form’s text field with CSS
- Java regex program to add space between a number and word in Java.
- C++ Program to Make a Simple Calculator to Add, Subtract, Multiply or Divide Using switch...case
- Setting Spaces between Letters with CSS letter-spacing Property
- Display the flex items with space between the lines in CSS
- Set the space between characters in CSS
- Check if the String contains only unicode letters, digits or space in Java
- Word Spacing Working with CSS
- Styling First-Letters with CSS ::first-letter
- Vertical Text, with Horizontal Letters in CSS
- If $A$ is the set of letters in the word FINITE and $B$ is the set of letters in the the word INFINITE. Whether $A$ and $B$ are equal or equivalent set. Justify your answer.
- Break the line based on word with CSS
- Make a font italic with CSS

Advertisements