View print CSS in IE7 or IE8

I'm debugging a site that has problems with element positioning when printing (I have a separate print.css file linked by a link element with the media="print" attribute). This problem only occurs in IE7 and IE8.

What I'm looking for is a way to view the page using the print media type, but while still having IE8's developer tools available to view element details and edit in real-time, etc.

The function I'm looking for would be similar to the "Display CSS by Media Type" feature in Chris Pederick's Web Developer Extension for Firefox. (But this problem doesn't occur in firefox...nor in safari, or even in IE6.)


为什么不把屏幕属性分配给调试会话的打印样式表(并删除屏幕版本或交换媒体属性)?


What I have always done, is I have disabled (commented out the "screen" style sheet) and converted the media="print" style sheet to be media="screen". Only way I know how with out printing a bunch of test pages.


i've always used print preview, never had a problem with it. just open it up in IE; i'd target it with conditionals, but "hacks" work just as well.

you're seeing differences....what media attributes do your other link elements have? if you have one for all, switch it to type="screen, projection">

链接地址: http://www.djcxy.com/p/42902.html

上一篇: 如何简化应用程序应用程序设置管理?

下一篇: 在IE7或IE8中查看打印CSS