頁面列印 css

來源:互聯網
上載者:User
CSS列印分頁

page-break-before : auto | always | avoid | left | right null 
 
參數:
 
auto :  假如需要在對象之前插入頁分割符
always :  始終在對象之前插入頁分割符
avoid :  避免在對象前面插入頁分割符
left :  在對象前面插入頁分割符直到它到達一個空白的左頁邊
right :  在對象前面插入頁分割符直到它到達一個空白的右頁邊
null :  空值。IE5用來取消頁分割符設定
 

page-break-after : auto | always | avoid | left | right | null 
 
參數:
 
auto :  假如需要在對象之後插入頁分割符
always :  始終在對象之後插入頁分割符
avoid :  避免在對象後面插入頁分割符
left :  在對象後面插入頁分割符直到它到達一個空白的左頁邊
right :  在對象後面插入頁分割符直到它到達一個空白的右頁邊
null :  空值。IE5用來取消頁分割符設定

說明:
 
檢索或設定對象前出現的頁分割符。
IE5僅支援always值和空白值(null)。
在IE4中此屬性不作用於br對象,但是IE5作用。
對應的指令碼特性為pageBreakBefore。請參閱我編寫的其他書目。
 
樣本:
 
p { page-break-after: always;}
 

IE6下用
style="page-break-before: always"
可以列印分頁.

IE7下不行.這句css不起作用
需要加上這句css
<!--[if IE 7]><br style="height:0; line-height:0"><![endif]-->

全部的css
<div style="page-break-before: always;">
   <!--[if IE 7]><br style="height:0; line-height:0"><![endif]--> 或]  <br style="height:0; line-height:0">
</div>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.