2010-06-18 121 views
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} 
+0

你可以顯示你正在使用的打印樣式表嗎? – KatieK 2010-06-18 16:19:58

+0

@KatieK - 當我通過使用「Web開發人員工具欄」的css打印介質查看頁面時,它看起來很好,但不是在瀏覽器的實際打印和打印預覽功能中。其他網頁工作正常,沒有'

' – 2010-06-18 16:22:43

+0

@MGS - Firefox,IE8,IE7等等之間的區別? – KatieK 2010-06-18 16:26:09

回答

0

畢竟我自己解決了這個問題。並分享給其他SO用戶,bcoz可能會有所幫助。

無論何處overflow:hidden在我的屏幕CSS中爲佈局的div定義,我在print css中將所有實例覆蓋到overflow:visible。並解決問題。