HTML 规范流程如何运作?

How does the HTML specification process work?

我正在尝试确认 HTML 规范流程的工作原理。

特别是这样我就可以建立一个元素发布时间的时间表。

我目前的理解是 HTML 规范发布了一个草案,然后由 Web 浏览器立即采用或慢慢实施。

查看 <style> 元素的规范,它说它是 2012 年的编辑草稿。

Link: https://dev.w3.org/html5/spec-preview/the-style-element.html

这是否意味着该元素是在 2012 年发布的? (我感觉style元素发布的早很多)我怎么也能查到它发布的月份?

据我所知,浏览器有责任在他们自己的时间实施 W3 制定的规范。考虑到各种浏览器缺乏对几个元素的实现(可以在CanIUse上检查),他们这样做确实看起来几乎是无限的window。

您正在查看的 link 是 开发 规范 - 正在进行的工作。

<style> element in particular was included in HTML 4.0.1, which was released on 24 December 1999, with the specifics on the element found here。这将是元素最终确定并公开发布的时间点。采用率因浏览器而异。

查看 the documentation for HTML 3.2(1997 年 1 月 14 日),您可以看到 <style><script> 元素 "are place holders for the introduction of style sheets and client-side scripts in future versions of HTML" .

正在搜索 the archives on CSS styling, the earliest ever implementation of the <style> element appears to be 29 May 1995. This is when version 0.97e of W3's testbed 'Arena' browser was released, which appears to include the <style> element for the first time (as is referenced in the release notes).

希望这对您有所帮助:)