我有一个清单,
<ul class="listStyle">
<li>
<strong>View :</strong> blah blah.
</li>
<li>
<strong>Edit :</strong> blah blah blah.
</li>
</ul>
我使用方形子弹列表。
.listStyle{
list-style-type: square;
}
子弹以黑色显示。是否有可能改变子弹的颜色?如果是,我该如何改变呢?
请帮忙, 感谢
答案 0 :(得分:34)
项目符号采用列表的color
属性:
.listStyle {
color: red;
}
请注意,如果您希望列表文本的颜色不同,则必须将其包装在p
中,例如:
.listStyle p {
color: black;
}
<ul class="listStyle">
<li>
<p><strong>View :</strong> blah blah.</p>
</li>
<li>
<p><strong>View :</strong> blah blah.</p>
</li>
</ul>
答案 1 :(得分:12)
我建议您使用background-image而不是默认列表。
.listStyle {
list-style: none;
background: url(image_path.jpg) no-repeat left center;
padding-left: 30px;
width: 20px;
height: 20px;
}
或者,如果您不想将背景图像用作子弹,可以选择使用伪元素:
.liststyle{
list-style: none;
margin: 0;
padding: 0;
}
.liststyle:before {
content: "• ";
color: red; /* or whatever color you prefer */
font-size: 20px;/* or whatever the bullet size you prefer */
}
答案 2 :(得分:0)
你必须使用图像
.listStyle {
list-style: none;
background: url(bullet.jpg) no-repeat left center;
padding-left: 40px;
}