Dear folks,
imagine a unsorted list: li items as children nested inside ul tags
Now, I have defined the bullets to be square shaped via list-style:square; however, if I set the color of the li items, color: #F00; then everything becomes red.
While I ONLY want to set the color of these square bullets. Which code in CSS allows me to set only the color of the bullets? Much appreciated.
html
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<ul>
CSS
li{
list-style:square;
}
a timelessly elegant solution– Sam Mar 15 '11 at 2:11