在段落元素中使用特殊字符时收到警告

时间:2018-03-09 08:41:13

标签: html5

我正在使用HTML5 CSS3 ...我必须显示一个具有特殊字符的句子。但是当我在段落元素中指定我的句子时,它会给我一个警告......

下面显示的是我的代码段。

<p>Due to the related impact on the F&A proposal this action ....... (ex: controller's.....</p> 

它向我显示一个警告三角形,说明无效字符。任何人都可以告诉我如何避免这种警告......

我也尝试使用&#34;&#34;和&#39;&#39;对于特殊字符,但它没有删除警告...

1 个答案:

答案 0 :(得分:2)

警告是因为HTML期望类似&Acute;但不完整。如果您使用&amp;代替&警告应该消失

你的代码将最终成为:

<p>
Due to the related impact on the F&amp;A proposal this action ....... 
(ex: controller's.....
</p>