首页htmlui_olHTML Element Style - 如何设置项目符号颜色

HTML Element Style - 如何设置项目符号颜色

我们想知道如何设置项目符号颜色。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul {
  list-style-type: square;
}

ul>li {
  color: green;
}

ul>li>span {
  color: black;
}
</style>
</head>
<body>
  <ul>
    <li><span>Text</span></li>
  </ul>
</body>
</html>