Home  >  Article  >  Web Front-end  >  How to make fonts more compact with css

How to make fonts more compact with css

王林
王林Original
2020-11-19 14:25:214337browse

Css method to make the font more compact: You can use the letter-spacing attribute, such as [letter-spacing: 20px;]. The letter-spacing property is used to increase or decrease the space between characters (character spacing).

How to make fonts more compact with css

The operating environment of this tutorial: Windows 7 system, css3 version, this article is applicable to all brands of computers.

letter-spacing attribute increases or decreases the space between characters (character spacing)

(Learning video sharing: css video tutorial)

Attribute value :

  • normal Default. Specifies no extra space between characters.

  • #length defines the fixed space between characters (negative values ​​are allowed).

  • #inherit Specifies that the value of the letter-spacing attribute should be inherited from the parent element.

Example:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style type="text/css">
			.p2 {
				letter-spacing: -4px;
			}
			.p3 {
				letter-spacing: 20px
			}
		</style>
	</head>
	<body>
		<p class="p1">正常文本!正常文本!</p>
		<p class="p2">紧凑的文本!紧凑的文本!</p>
		<p class="p3">稀疏的文本!稀疏的文本!</p>
	</body>
</html>

Effect:

How to make fonts more compact with css

Related recommendations: CSS tutorial

The above is the detailed content of How to make fonts more compact with css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn