CSS设置文本字符间的距离

 1 <html>
2
<head>
3
<style type="text/css">
4 h1
{letter-spacing: -0.5em}
5 h4
{letter-spacing: 20px}
6
</style>
7
</head>
8
9
<body>
10
<h1>This is header 1</h1>
11
<h4>This is header 4</h4>
12
</body>
13
</html>

然而,当你运行时你会发现<h1></h1>中的内容会产生一个

奇怪的图案。-0.5em这个东西有点不平常哟!



相关文章:

  • 2021-05-31
  • 2021-05-06
  • 2021-10-01
  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
  • 2022-03-05
  • 2021-11-23
猜你喜欢
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案