如何避免 IE9 及以下 CSS 黑客删除 AjaxMin
我正在使用以下 css:
.GridDraggedRow tr td.firstCol{
padding: 2px 10px 0 0;
text-align: right;
vertical-align: top;
width: 1px;
width: 1%\9; /* IE9 and below */
white-space: nowrap;
}
如您所见,我正在使用一个非常丑陋的 css hack。 我的问题是这个 hack 被从我用 AjaxMin 生成的缩小的 css 文件中删除了。 这是我们交付系统中的构建后步骤,因此我们将坚持使用 AjaxMin。 ajaxmin 文档 解释了使用“hacks”可以进行一些基于评论的黑客攻击' 标志,例如:
ajaxmin -css -comments:hacks GridLayout.css
不幸的是 \9 hack 是不允许的。 我能做些什么 ? 我认为解析生成的文件不是一个好主意。
我想我最好的选择是将此 hack 插入另一个非缩小文件中或直接插入标签之间的 html 页面中... 你们有更好的主意吗?如果 ajaxmin 提供排除部分那就太好了......
I'm using the following css :
.GridDraggedRow tr td.firstCol{
padding: 2px 10px 0 0;
text-align: right;
vertical-align: top;
width: 1px;
width: 1%\9; /* IE9 and below */
white-space: nowrap;
}
As you can see, I'm using a pretty ugly css hack.
My problem is that this hack is removed from the minified css file I'm generating with AjaxMin.
It is a post-build step in our delivery system so we're gonna stick with AjaxMin.
The ajaxmin documentation explains that several comment-based hacks are allowed with the use of the 'hacks' flag, ex:
ajaxmin -css -comments:hacks GridLayout.css
Unfortunately the \9 hack is not allowed.
What can I do ?
Parsing the generated file isn't a good idea in my opinion.
I guess my best choice is to insert this hack in another non-minified file or directly in the html page between tags...
Do you guys have a better idea ? It would be great that ajaxmin provide an exclusion section...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不应该使用任何那些丑陋的黑客!
请改用 Paul Irish 的条件注释方法。
在 HTML 标签的开头使用这个:
然后,在 CSS 中使用这个:
这更干净,也更可靠。
You shouldn't be using any of those ugly hacks!!
Use Paul Irish's conditional comments method instead.
Use this at the opening of your HTML tag:
Then, in your CSS, use this:
This is much cleaner, and much more reliable.