提问人:Grove 提问时间:7/23/2023 更新时间:7/23/2023 访问量:15
为什么 x-vendor-feature 没有通过 w3 验证
Why does x-vendor-feature not pass w3 validation
问:
形式的标记属性现在在 HTML 规范中:x-feature-vendor
对于旨在与 HTML 语法一起使用的标记级功能,扩展应限制为“x-vendor-feature”形式的新属性,其中 vendor 是一个短字符串,用于标识负责扩展的供应商,feature 是功能的名称。
我正在尝试验证简单的代码:
<!DOCTYPE html>
<head>
<title>Test</title>
</head>
<body>
<div class="Name" x-vendor-feature>
<span id="FirstName"></span>
<span id="SurName"></span>
</div>
</body>
但是验证器不允许 x-vendor-feature:
错误:此时元素 div 上不允许属性 x-vendor-feature。
他们没有更新验证器吗?我想开始使用属性。x
答: 暂无答案
评论