valid xhtml meta tags for facebook open-graph and twitter cards

喜夏-厌秋 提交于 2019-11-28 02:25:58
unor

If you remove this element, the validator will complain about the next one containing the property attribute.

The property attribute is part of RDFa, but your DOCTYPE doesn’t allow the use of RDFa.

If you want to keep using XHTML 1.1, you could change it to:

  • for RDFa 1.0: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">

  • for RDFa 1.1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">

Or simply switch to (X)HTML5, which comes with RDFa 1.1 support.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!