有的時候要用到網頁直接打印,用戶需求千奇白怪,比如不顯示某個單元格。
.notd
{
border-right-style: none;/*右邊不顯示*/
border-left-style: none;/*左右不顯示*/
border-top-style: none;/*頂部不顯示*/
border-bottom-style: none;/*底部不顯示*/
}
根據實際調整,實際上還是能看見虛線,特別是在整個表格外邊的情況。{
border-right-style: none;/*右邊不顯示*/
border-left-style: none;/*左右不顯示*/
border-top-style: none;/*頂部不顯示*/
border-bottom-style: none;/*底部不顯示*/
}
那還有一個方法:
.listab
{
BORDER-COLLAPSE: collapse;
BORDER-LEFT: medium none;
BORDER-RIGHT: medium none;
BORDER-TOP: medium none;
BORDER-BOTTOM: medium none;
}
在table裡面加入就ok了。{
BORDER-COLLAPSE: collapse;
BORDER-LEFT: medium none;
BORDER-RIGHT: medium none;
BORDER-TOP: medium none;
BORDER-BOTTOM: medium none;
}
以下還有個關於打印和分頁的代碼:
<style media="print" type="text/css">
.Noprint{display:none;}
.PageNext{page-break-after: always;}
</style>
.Noprint{display:none;}
.PageNext{page-break-after: always;}
</style>