首页htmltext_indentCSS Property Value - 如何text-indent: -5em; 对齐此表的内容

CSS Property Value - 如何text-indent: -5em; 对齐此表的内容

我们想知道如何text-indent: -5em; 对齐此表的内容。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.hangingindent {
  padding-left: 5em;
  text-indent: -5em;
}
</style>
</head>
<body>
  <p class="hangingindent">
    <b>Example 1:</b> A BruxZir bridge has 3 mm high x 3 mm wide
    connectors. 3 mm2 x 3 mm = 3x3x3 = 27. This bridge will be able to
    carry a proportional load in the oral environment, according to the
    Rule of 27.
  <p>
</body>
</html>