首页htmllist_styleCSS Property Value - 如何list-style: upper-latin outside;

CSS Property Value - 如何list-style: upper-latin outside;

我们想知道如何list-style: upper-latin outside;

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of list-style shorthand property</title>
<style type="text/css">
ul {
  list-style: circle inside;
}

ol {
  list-style: upper-latin outside;
}
</style>
</head>
<body>
  <h2>Unordered List</h2>
  <ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
  </ul>
  <h2>Ordered List</h2>
  <ol>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
  </ol>
</body>
</html>