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
|
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
| |||
|
feedback
|
|
you may use :first-line pseudo-element for the li, like
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 | |||||
feedback
|
$('#myList li').wrapInner('<span>');, with CSS:li { font-weight: bold }andli 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 thespantag. – thirtydot Mar 9 '11 at 10:34