在IE10的文档末尾打印页脚时,我完全陷入了一个奇怪的问题。我对https://stackoverflow.com/questions/16737743/css-how-to-force-child-to-use-parent-height-in-sticky-footer采用了类似的方法。它可以在包括IE10在内的所有IE版本中正确打印。但是,IE10不支持页脚的绝对CSS定位,并在内容后立即显示页脚。我的实际代码示例如下。
body, html {
height:100%;
padding:0;
}
p {
margin-top:0px;
margin-bottom:1px;
}
#wrapper {
position:relative;
min-height:100%;
}
#content {
padding-bottom:100px;
}
#footer {
width:100%;
position: absolute;
bottom: 0px;
}
@media print {
/*For FF to fix the printing issue.*/
@-moz-document url-prefix() {
#footer {
position: relative;
}
}
/*Chrome*/
@media print and (-webkit-min-device-pixel-ratio:0) {
#footer {
position:relative;
}
}
内容在这里 样本页脚
如果有人对这个问题有所了解,我会非常感激,因为它需要我一个旋转。