On Wed, 05 Mar 2008 11:18:52 -0500, Jeff Blaine wrote:
> I don't see a CSS2 way to apply a color to JUST the list item marker (disc, 
> square,
> whatever).
>
> Have I missed it?  I don't want to use an image.  I just want to make the 
> list item
> marker itself 20% less imposing by lightening it relative to body text color.
>
Try this:

HTML
<ul>
  <li><span>Link text</span></li>
  ...
</ul>
CSS
ul {color:#666;}
ul span {color:#000;}

... or something like that.

> Side question:  Barring a solution above, how do I use a chosen character as 
> the list
> item marker?  I've seen people use those '>>' glyphs before (&something;), 
> but don't
> know how to do it in this context.
>

&raquo; perhaps, used inside the LI with "list-style-type: none;"?

Cordially,
David
--

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to