首页htmllist_style_typeCSS Property Value - 如何使用list-style-type: none;

CSS Property Value - 如何使用list-style-type: none;

我们想知道如何使用list-style-type: none;

<!DOCTYPE html>
<html>
<head>
<title>Using Before to change list style type</title>
<style type='text/css'>
ul {
  list-style-type: none;
}

ul li:before {
  content: '>';
  padding: 0 10px 0 0;
}
</style>
</head>
<body>
  <ul>
    <li>List Item 1</li>
    <li>List Item 2</li>
    <li>List Item 3</li>
    <li>List Item 4</li>
    <li>List Item 5</li>
  </ul>
</body>
</html>