我在 ColdFusion 应用程序的页面中使用 HTML5-Reset。头部标签如下所示:
<head id="swipeapp" data-template-set="html5-reset">
页面中也有一个<cfform>
。浏览器会忽略data-template-set
并id
在浏览器本身上打印内容。我发现这是因为<cfforms>
并发现添加<cfcontent type="text/html; charset=utf-8">
解决了这个问题。
通过这一更改,该页面可以在 Chrome 和 Firefox 上运行,但 html5-reset 也会被删除。对齐方式和样式在 IE 7 和 8 中折腾。
有什么办法可以保留html5-reset
和使用cfforms
吗?