首页htmltext_indentCSS Property Value - 如何text-indent: 100px;

CSS Property Value - 如何text-indent: 100px;

我们想知道如何text-indent: 100px;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS text indentation</title>
<style type="text/css">
p {
  text-indent: 100px;
}
</style>
</head>
<body>
  <h1>Text-indentation Effect</h1>
  <p>
    The first line of this paragraph is indent by 100px. Play with the
    value of
    <code>text-indent</code>
    property to see how it works. Negative values are allowed.
  </p>
</body>
</html>