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.
谷歌浏览器的检查元素似乎强制所有标签为小写。有没有办法禁用该行为,以便标签在写入时显示?
在 HTML 中,标签不区分大小写,因此即使<p>Hello.</P>在 XML 中不起作用,在 HTML 中也可以。
<p>Hello.</P>
不过,使用 XHTML DOCTYPE 可能会修复它。不过我还没有测试过。
出于好奇,你为什么想要这种行为?