Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对rel属性的使用有点困惑。
rel
我个人理解rel="author",rel="me"并且rel="publisher",但是我想知道是否可以混合和匹配属性值。
rel="author"
rel="me"
rel="publisher"
示例 1:在我的网站上,我在页脚中有一个链接到我的域的链接。我添加rel="me",rel="author"还是rel="me author"?
rel="me author"
示例 2:在我的网站上,我有一个指向我的 Twitter 帐户的链接。我添加rel="me"或rel="me publisher"?
rel="me publisher"
您不能在一个 HTML 元素中添加多个 rel 属性,但您可以在一个 rel 属性值中插入多个参数 - 只需用空格分隔即可:
<a rel="me author" href="my_page"> <a rel="me publisher" href="twitter_link">
上次我查看 Google 丰富的代码片段工具时抱怨说,如果您在同一页面上同时有作者和出版商标记。
如果我没记错的话,作者胜过出版商