w3c validator shows error for facebook open graph

微笑、不失礼 提交于 2019-12-01 10:59:24

The xmlns attribute is deprecated in HTML+RDFa 1.1.

You should use the prefix attribute instead:

<html 
  prefix="og: http://ogp.me/ns# 
          fb: http://www.facebook.com/2008/fbml">

resp. if you want to keep the xmlns for XHTML5:

<html 
  xmlns="http://www.w3.org/1999/xhtml"
  prefix="og: http://ogp.me/ns# 
          fb: http://www.facebook.com/2008/fbml">
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!