gpt4 book ai didi

css - 纵向模式下的介质打印问题

转载 作者:行者123 更新时间:2023-11-28 13:20:44 24 4
gpt4 key购买 nike

我有这张表格,我打印它是为了完成我的工作。

现在,问题是,在纵向模式下,它被最小化了,我的意思是它看起来很小,就像 A4 Letter 的一半页面,而在横向模式下它看起来还不错。

这是我的媒体打印 CSS:

@media print  {
textarea{
border:none;
}
textarea#difekti {
padding-bottom:40px;
border:none;
}
#menu-home { display:none }
#status-print { display:none }
#submit-f {display:none};
#MainContent {
display: block;

}
#tab1 table, td, th {
border: 1px solid red;
}

#tab1 thead {
float: left;
}


#tab1 thead th {
display: block;
background: yellow;
}

#tab1 tbody {
float: right;
}
#programi {
display:none;
}
#kursor {
display:none;
}
#adresa { }
* {position:static !important;}

}

有什么建议吗?此外,我也有 IE 问题。我可以为 IE 创建额外的媒体打印吗?谢谢

最佳答案

您应该将其更改为一个单独的 CSS 文件,并在任何 CSS 链接的最底部使用 media="print" 将其链接到您的 HTML 文档。

<link rel="stylesheet" type="text/css" media="print" href="path/to/your/css" />

这也将帮助您避免 IE 的问题。

关于css - 纵向模式下的介质打印问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14642479/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com