1
頁面有tables
在打印中創建問題? 到來空白和內容第一頁來從第2頁打印,如果頁面有<table>
帶有表格打印問題的頁面,即使我使用單獨的打印CSS?
如果table
長我想打印table
每個打印頁的標題。
body{
font: 8pt/1.5 Arial, "Helvetica Neue", Helvetica, sans-serif;
background: white;
}
#wrap-threeContainer, #wrap-twoContainer, #header {width: auto;
padding-top:1em;background:none}
#wrap-threeCenterColContainer,
#wrap-twoRightColContainer {margin:0;padding:0;width:auto;float:none}
h1 {color:#000}
#globalWrapper{
width: auto;
margin: 0 2%;
padding: 0;
border: 0;
float: none !important;
color: black;
background: transparent;
}
#dataContainer, #introTextContainer, #wrap-threeContainer h1 {width:100%}
#top-bar, #primarynavcontainer, #breadcrumbsContainer,
#footer, #wrap-threeLeftColContainer, #wrap-threeRightColContainer,
#bannerContainer, p.update, .adobe-reader-download,
#wrap-twoLeftColContainer {visibility:hidden; display:none}
tr, td, th {page-break-inside:avoid}
thead {display:table-header-group}
a {color:#000000}
a:link, a:visited {
color: #520;
background: transparent;
font-weight: bold;
text-decoration: underline;
}
#content a:link:after, #content a:visited:after {
content: " (" attr(href) ") ";
font-size: 90%;
}
div#dataContainer {
}
#header #logoContainer {
position:static;
}
#header {border-bottom:1px solid #333}
你可以顯示你正在使用的打印樣式表嗎? – KatieK 2010-06-18 16:19:58
@KatieK - 當我通過使用「Web開發人員工具欄」的css打印介質查看頁面時,它看起來很好,但不是在瀏覽器的實際打印和打印預覽功能中。其他網頁工作正常,沒有'
@MGS - Firefox,IE8,IE7等等之間的區別? – KatieK 2010-06-18 16:26:09
回答
畢竟我自己解決了這個問題。並分享給其他SO用戶,bcoz可能會有所幫助。
無論何處
overflow:hidden
在我的屏幕CSS中爲佈局的div
定義,我在print css中將所有實例覆蓋到overflow:visible
。並解決問題。來源
2010-06-19 12:52:33
相關問題