首页htmlletter_spacingCSS Property Value - 如何letter-spacing: .06em;

CSS Property Value - 如何letter-spacing: .06em;

我们想知道如何letter-spacing: .06em;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
p {
  font: 100%/1 sans-serif;
}

.one {
  letter-spacing: .06em;
}

.two {
  letter-spacing: .17em;
}
</style>
</head>
<body>
  <p class="one">Letter-spacing</p>
  <p class="two">Letter-spacing</p>
</body>
</html>