Html 净化器 | CSS 整洁 |浏览器特定的属性和黑客行为被修剪。我如何允许这些?
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e7e7e7');
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e7e7e7));
过滤输入时会删除这些类型的 css 属性。我不确定这是否是由于 CSSTidy 或 HTML Purifier 造成的。我试图查看两本手册,但没有找到任何线索。
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e7e7e7');
background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e7e7e7));
These kinds of css properties are removed when filtering input. I'm not sure if this is due to CSSTidy or HTML Purifier. I've tried to look in both of the manuals without finding any clues.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTML Purifier 肯定会去除这些属性。 CSS Tidy 可能也会(虽然我不确定)。您需要为每个组件创建自定义验证 AttrDefs。
HTML Purifier will strip out these properties, definitely. CSS Tidy probably will too (though I'm not sure.) You'll need to create custom validation AttrDefs for each of them.
我刚刚经历过这个。为了防止混淆,爱德华指的是:
http:// /htmlpurifier.org/phorum/read.php?2,6154,6154#msg-6154
I just went through this. In case it is confusing, Edward is referring to this:
http://htmlpurifier.org/phorum/read.php?2,6154,6154#msg-6154