XHTML Transitional 1.o 在无序 ul 标签中突出显示单个单词
我有一个无序列表,每个项目都是一个句子。我想突出显示句子中的一两个单词,但字体颜色标签
<font color="CC9966">highlighted words </font>
会生成错误。有人可以建议解决这个问题吗?我尝试将其放入
<li> </li>
,虽然它可以工作并且不会生成错误,但这不是我想要的格式,因为我在 CSS 样式表中的 li 上进行了滚动。谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在要突出显示的单词周围加上一个跨度。在CSS中创建一个名为highlight的类并使用它可能会更容易。
您可以使用W3C 标记验证器检查文档的有效性。这些是制定规则的人。如果您将选项卡更改为通过直接输入进行验证并输入:
您将看到li 中的跨度是有效标记。
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.
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:
You will see that a span in a li is valid markup.