I have an unordered list and each item is a sentence. I would like to highlight a word or two within the sentence but the font color tag

<font color="CC9966">highlighted words </font>

generates an error. Can anyone please suggest a fix for this? I have tried putting it in

<li> </li>

and while it works and generates no error, but this is not the formatting I want as I have a roll over on the li in my CSS style sheet. Thank you.

link|improve this question

67% accept rate
feedback

1 Answer

Wrap a span around the word you want to highlight. It would probably be easier to make a class in the CSS called highlight and use that though.

<span style="color:#DD0000">wordToHighlight</span>

You can check a documents validity by using the W3C Markup Validator. These are the people that make the rules. If you change the tab to validate by direct input and put in:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>test</title>
</head>
<body>
<ul>
<li>this is a <span style="color:#FF0000">test</span> sentence</li>
</ul>
</body>
</html>

You will see that a span in a li is valid markup.

link|improve this answer
Thank you. I tried that and I get the error: The tag span not allowed within "ul". It is only allowed within: a, abr, acronym, ... – Zeos6 Jul 22 '11 at 16:09
What is generating this error, and what version of HTML are you using? – Marcin Jul 22 '11 at 16:18
The DOC type is XHTML Transitional 1.0. I am using Dreamweaver CS4 and using it's validation. The error occurs when I try to change color of a single word inside a ul tag. – Zeos6 Jul 22 '11 at 16:24
@Zeos6 CS4 is wrong then – m4tt1mus Jul 22 '11 at 17:55
1  
Thank you. It seems that I am not communicating the issue properly. It appears that I need to create a nested list with the roll over on the nested part. – Zeos6 Jul 22 '11 at 18:35
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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