Is there anyway to bold the decimals in an ordered list using CSS only? The CMS we are using is spitting out li's with no nested p/span/header tag so I can't bold the li and reset the nested tag...

Any ideas?

thanks

link|improve this question

Please post (a representative sample of) your HTML and CSS. – Tom Medley Mar 9 '11 at 10:10
If your CMS already relies on jQuery, you can do it with a single line: $('#myList li').wrapInner('<span>');, with CSS: li { font-weight: bold } and li span { font-weight: normal }. See: jsfiddle.net/SSzuh Though, it would probably make more sense just to edit your server-side output code to include the span tag. – thirtydot Mar 9 '11 at 10:34
thanks for your suggestions. Solution below worked for me. – csbourne Mar 9 '11 at 10:47
feedback

1 Answer

up vote 2 down vote accepted

you may use :first-line pseudo-element for the li, like

li {
  font-weight: bold;
}
li:first-line {
  font-weight: normal;
}

It works for the latest versions of modern browsers, except IE.

For IE you need to use scripting to add nested tag for the li's

link|improve this answer
This works fine as long as your li is no more than one line ;) – csbourne Mar 9 '11 at 10:51
correct, I haven't found other way to do what you want without scripting or changing generated HTML from server side. See here for all available CSS options: w3.org/TR/CSS2/selector.html – WayFarer Mar 9 '11 at 11:05
feedback

Your Answer

 
or
required, but never shown

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