Druckproblem

Status
Nicht offen für weitere Antworten.

angotti

Grünschnabel
Hallo,

leider habe ich ein Problem beim Drucken:

es wird immer eine zweite Leerseite mit ausgegeben.
Ich kann den Fehler nicht finden. css ist ohne viel TamTam. Wer weiß Rat?

Gruß, tom

body { background-color: #000000;
margin: 0px;
padding: 0px;
height: 700px;
}
#content_big
{
width: 580px;
height: 700px;
margin-left: 40px;
padding: 0px;
margin-bottom: 0;
margin-right: 0;
margin-top: 0;
page-break-inside:avoid;
}
#head
{
display: none;
}
#content
{
display: none;
}
#foot
{
display: none;
}
 
Hi, also das ist aus meiner print.css, die funktioniert, evtl. kannst du damit was anfangen und vergleichen!

Code:
/*
  Last changes:
    10.11.2005: Date of creation (basic layout)
    12.11.2005: Modified Table
*/

body {
  margin                            : 0;
  padding                           : 0;
  font                              : 12pt Garamond, Palatino, "Times New Roman", Times, serif;
  color                             : black;
  background                        : transparent;
}

#header, #footer {
    display                         : none;
}

h1.step {
    text-align                      : center;
}

table.offer {
    width                           : 600px;
    margin                          : 0 auto;
    border-collapse                 : collapse;
    border                          : 1px solid #000;
}

table.offer th {
    font-weight                     : bold;
    background                      : #d0d0d0;
    padding                         : 5px;
}

td.position {
    font-style                      : italic;
    text-align                      : center;
    border-left                     : 1px solid #000;
}

td.result, td.result_sum, td.position_price {
    text-align                       : right;
    padding-right                    : 10px;
}

table.offer td {
    border-top                       : 1px solid #000;
    border-right                     : 1px solid #000;
}
 
Status
Nicht offen für weitere Antworten.
Zurück