App下載
首頁(yè)htmlui_olHTML Element Style - 如何刪除列表項(xiàng)目符號(hào)

HTML Element Style - 如何刪除列表項(xiàng)目符號(hào)

我們想知道如何刪除列表項(xiàng)目符號(hào)。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
li:nth-last-child(2) {
  list-style-type: none;
}
</style>
</head>
<body>
  <ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
  </ul>
  <ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
  </ul>
</body>
</html>