如何在 HTML 中更改项目符号点的颜色 [重复]
Posted
技术标签:
【中文标题】如何在 HTML 中更改项目符号点的颜色 [重复]【英文标题】:How to change the bullet point's color in HTML [duplicate] 【发布时间】:2021-01-20 04:05:43 【问题描述】:如何在 ul、li 上更改子弹的颜色。在 html 中。
例如* Toyota
,表示我要更改颜色的星星。
【问题讨论】:
【参考方案1】:ul
list-style: none;
ul li::before
content: "*";
color: red; /*What color you want change here*/
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
<ul>
<li>Hello</li>
</ul>
试试这个.....!
<style>
ul
list-style: none;
ul li::before
content: "*";
color: red;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
</style>
【讨论】:
该死,它成功了,非常感谢你,一整天都在尝试。以上是关于如何在 HTML 中更改项目符号点的颜色 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
在 html 选择中悬停或选择项目时,如何避免更改背景颜色?