css3 - Bullet point background color attribute? CSS -
i'm looking alter background colour of bullet points,
ul { list-style-type: square; list-style-position: outside; list-style-image: none; } is there bullet point background colour attribute? somthing this?
list-style-background-color: blue; edit
color: bluish changes font colour , bullet point colour, alter bullet point colour , leave font alone.
demo
if don't wish utilize <span> or <div>
you can utilize :before add together custom bullet li
li { list-style:none; } li:before { content: ""; position:relative; left: -10px; background-color:red; display:inline-block; width:5px; height:5px; } css css3
No comments:
Post a Comment