首页htmlui_olHTML Element Style - 如何位置底部边框在有序列表的项目符号下面

HTML Element Style - 如何位置底部边框在有序列表的项目符号下面

我们想知道如何位置底部边框在有序列表的项目符号下面。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ol li {
  list-style-type: decimal;
  border-bottom: 1px solid #000;
  padding-left: 20px;
  margin-left: 20px;
}

ol {
  list-style-position: inside;
}
</style>
</head>
<body>
  <ol>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
  </ol>
</body>
</html>