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.
在 doctype 声明之前有空行返回是否有效?
<!DOCTYPE>声明必须是 HTML 文档中的第一件事,在标记<html>之前。
<!DOCTYPE>
<html>
通过w3schools
不必要; BOM、空格和注释可能会排在第一位。
http://www.w3.org/TR/html-markup/documents.html#syntax-document-html
所以是的,它必须在任何实际的 HTML 标记之前出现,但请注意,您不能真正将 doctype 放在 BOM 之前。