Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
ul {
  list-style: none; /* Remove HTML bullets */
  padding: 0;
  margin: 0;
}
li { 
  padding-left: 16px; 
}
li::before {
  content: "•"; /* Insert content that looks like bullets */
  padding-right: 8px;
  color: blue; /* Or a color you prefer */
}
</style>
</head>
<body>
<h1>content 属性</h1>
<ul>
  <li>咖啡</li>
  <li></li>
  <li>可口可乐</li>
</ul>
</body>
</html>