2011-10-11 38 views

回答

9

可以通過標記的大小和打印頁的頁邊距與@page CSS rule

/* In CSS, not JavaScript */ 
@page { 
    size: A4 landscape; 
    margin: 42pt 12pt; 
} 

@media print { 
    /* Define print-specific styles here, for example toning down the decoration 
    of hyperlinks and removing the navigation. */ 
    a {color: inherit !important; text-decoration: none !important;} 
    nav {display: none;} 
} 

然而,browser support是斑點 - 除了prince XML,只有IE8 +和Opera支持它。如果您希望跨打印進行精確的跨瀏覽器控制,請考慮一個(通常是服務器端)PDF輸出機制。