I have an ol with this css:
ol {
list-style-type: upper-roman;
color: red;
}
My question is this...my li and any text within will be red.
<li>Some Text</li>
if I do:
<li><span>Some Text</span></li>
Its no problem I can manipulate span as I wish, But... is there a css way to alter the text color without encompassing in a separate element?
Your advice is appreciated :)