W3Schools 对标签有这样的说法:
<label>
标签定义输入元素 的标签。[强调我的]
这是否意味着以下 HTML 无效?
<!doctype html>
<html>
<head>
<title>Example document</title>
</head>
<body>
<label for="x">Label</label>
<hr>
<div id="q" contentEditable="true">Hello</div>
<hr>
<div id="x" contentEditable="true">World</div>
</body>
</html>
Chrome 和 IE8 都关注点击World
时间Label
,Firefox 没有。哪个是对的?