了解如何使用 CSS 更改列表的项目符号颜色。
创建一个基本列表:
<ul>
<li>Adele</li>
<li>Agnes</li>
<li>Billy</li>
<li>Bob</li>
</ul>
默认情况下,无法更改列表项的项目符号颜色。不过,您可以使用一些 CSS 技巧来实现这一点。请注意,如果您使用 CSS 框架或特殊样式表,您可能需要对其进行一些不同的调整:
ul {
list-style: none; /* Remove default bullets */
}
ul li::before {
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
color: red; /* Change the color */
font-weight: bold; /* If you want it to be bold */
display: inline-block; /* Needed to add space between the bullet and the text */
width: 1em; /* Also needed for space (tweak if needed) */
margin-left: -1em; /* Also needed for space (tweak if needed) */
}
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!