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;
}
link|improve this question

1  
I'm not sure if this can be done elegantly (but I'm no CSS expert). If you don't get a "right" answer, you could consider using list-style-image and setting it to an image of a colored bullet. – Brandon Bohrer Mar 15 '11 at 1:57
+1 for reading my mind, but that I cannot call a timelessly elegant solution – Sam Mar 15 '11 at 2:11
feedback

6 Answers

up vote 29 down vote accepted

The most common way to do this is something along these lines:

ul {
    list-style: none;
    padding:0;
    margin:0;
}

li { 
    padding-left: 1em; 
    text-indent: -.7em;
}

li:before {
    content: "• ";
    color: red; /* or whatever color you prefer */
}

Live demo: http://jsfiddle.net/leaverou/ytH5P/

Will work in all browsers, including IE from version 8 and up.

link|improve this answer
1  
in contrast to the other impossible cannot be done answers, you have solved this as a very sossible answer! Clever, creative, short... timelessy ELEGANT! thanks – Sam Mar 15 '11 at 11:46
being a nitwit, I would remove the extra space in "• " ==> "•" and add this line below it: padding-right:7px; bit more controll there :) the rest is awesome and works everywhere. PS what does the :before mean/do here? – Sam Mar 15 '11 at 11:50
1  
instead of "• " also possible: content: "4"; font-family:"Webdings"; which will result in a nice > or for a nice ■ content: "■"; font-family:"Arial Black"; – Sam Mar 15 '11 at 12:21
@Sam #1: :) @Sam #2: You're right about the space, I'm just lazy :$ Better set the padding in ems though, otherwise it'll break when font-size changes (either because you changed the CSS or because the end user adjusted it) @Sam #3: I wouldn't trust dingbat fonts in web pages, some browsers used to choke in the past (haven't tried it recently). Better just use the unicode character. – Lea Verou Mar 15 '11 at 15:49
2  
Oh, and as for what :before does: It lets you dynamically insert (presentational) content inside an element, before its "real" content. More: w3.org/TR/CSS21/generate.html#before-after-content (I pasted the CSS2 spec to show you it's not even CSS3) – Lea Verou Mar 15 '11 at 15:51
feedback

The current spec of the CSS 3 Lists module does specify the ::marker pseudo-element which would do exactly what you want; FF has been tested to not support ::marker and I doubt that either Safari or Opera has it. IE, of course, does not support it.

So right now, the only way to do this is to use an image with list-style-image.

I guess you could wrap the contents of an li with a span and then you could set the color of each, but that seems a little hackish to me.

link|improve this answer
1  
+1 for this: "IE, of course, does not support it." :) – Lucas McCoy Mar 15 '11 at 2:05
feedback

The easiest thing you can do is wrap the contents of the <li> in a <span> or equivalent then you can set the color independently.

Alternatively, you could make an image with the bullet color you want and set it with the list-style-image property.

link|improve this answer
feedback

I'm not sure.

HTML

<ul>
<li><span>Item 1</span></li>
<li><span>Item 2</span></li>
<li><span>Item 3</span></li>
<ul>

CSS

li {
   list-style:square;
}

span {
    color: red;
}
link|improve this answer
feedback

I would recommend giving the LI a background-image and left padding. The list-style-image attribute is flakey in cross-browser environments, and adding an extra element, such as a span, is unneccessary. So your code would end up looking something like this:

li {
background:url(../images/bullet.png) 0 0 no-repeat;
list-style:none;
padding-left:10px;
}
link|improve this answer
feedback

I use jQuery for this:

jQuery('li').wrapInner('<span class="li_content" />');

& with some CSS:

li { color: red; }
li span.li_content { color: black; }

maybe overkill, but handy if you're coding for a CMS and you don't want to ask your editors to put an extra span in every list-items.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.