CSS controls the spacing between words through the letter-spacing property

CSS controls the spacing between words through the letter-spacing property

letter-spacing property : Increase or decrease the space between characters (character spacing).

This property defines how much space to insert between text character boxes. Since character glyphs are often narrower than their character boxes, specifying a length value adjusts the usual spacing between letters. Therefore, normal is equivalent to a value of 0.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	span{
		letter-spacing: 10px;
	}
</style>
</head>
<body>
	<span>Test word spacing</span>
</body>
</html>

Effect:

insert image description here

Summarize

This is the end of this article about how to control the spacing between letters through the CSS letter-spacing property. For more relevant CSS word spacing content, please search 123WORDPRESS.COM's previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  A detailed introduction to the redesign of the Weibo component on the website (pictures and text)

>>:  Teach you how to quickly install Nginx in CentOS7

Recommend

A brief discussion on the synchronization solution between MySQL and redis cache

Table of contents 1. Solution 1 (UDF) Demo Case 2...

MySQL character set garbled characters and solutions

Preface A character set is a set of symbols and e...

Instructions for using the --rm option of docker run

When the Docker container exits, the file system ...

Detailed explanation of Nginx regular expressions

Nginx (engine x) is a high-performance HTTP and r...

Native js to achieve seamless carousel effect

Native js realizes the carousel effect (seamless ...

Implementing user registration function with js

This article example shares the specific code of ...

Record a slow query event caused by a misjudgment of the online MySQL optimizer

Preface: I received crazy slow query and request ...

Detailed process of installing Presto and connecting Hive in Docker

1. Introduction Presto is an open source distribu...

Use of hasOwnProperty method of js attribute object

Object's hasOwnProperty() method returns a Bo...

Using HTML to implement a voting website cheating scheme that restricts IP

This is a cheating scheme for voting websites wit...

MySQL 8.0 user and role management principles and usage details

This article describes MySQL 8.0 user and role ma...

Example of creating a virtual host based on Apache port

apache: create virtual host based on port Take cr...

Solution to index failure caused by MySQL implicit type conversion

Table of contents question Reproduction Implicit ...