print.css

来自「一个用PHP编写的」· CSS 代码 · 共 69 行

CSS
69
字号
.print_ignore {    display: none;}body, table, th, td {    color:             #000000;    background-color:  #ffffff;    font-size:         8pt;}img {    border: 0;}table, th, td {    border-width:      0.1em;    border-color:      #000000;    border-style:      solid;}table {    border-collapse:   collapse;    border-spacing:    0;}th, td {    padding:           0.2em;}th {    font-weight:       bold;    background-color:  #e5e5e5;}@media print {    .print_ignore {        display: none;    }    body, table, th, td {        color:             #000000;        background-color:  #ffffff;        font-size:         8pt;    }    img {        border: 0;    }    table, th, td {        border-width:      1px;        border-color:      #000000;        border-style:      solid;    }    table {        border-collapse:   collapse;        border-spacing:    0;    }    th, td {        padding:           0.2em;    }    th {        font-weight:       bold;        background-color:  #e5e5e5;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?