App下載
首頁htmlui_olHTML Element Style - 如何位置底部邊框在有序列表的項(xiàng)目符號下面

HTML Element Style - 如何位置底部邊框在有序列表的項(xiàng)目符號下面

我們想知道如何位置底部邊框在有序列表的項(xiàng)目符號下面。

<!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>