Hi,
wie mittlerweile vlt. schon bekannt ist, code ich HTML 4.01 Strict.
Mein Problem: Ich habe für http://customers.assistance4all.de/minis/?links ein CSS-File mit dem Parameter media="print" definiert. Der Link zur noch nicht fertigen Linkliste ist Absicht, weil dort wenig Inhalt steht. Wenn man jetzt mal im IE auf Datei | Druckvorschau geht, wird man feststellen, dass der Inhalt nicht, wie eigtl. gewünscht, zentriert ist, sondern, dass die Tabelle links ausgerichtet ist. Das CSS-File:
/* ======================================== */
.noprint {
display: none;
}
a {
color: #003366;
text-decoration: underline;
}
body, #content, html {
width: 100%;
}
p.headline
{
color: #003366;
}
/* ======================================== */
.noprint bewirkt, dass z.B. das Menü ausgeblendet wird, a stellt weiße Links auf dunkelblau um, p.headline stellt die weiße Überschrift auf dunkelblau um. Übrig bleibt nun noch body, #content, html. #content ist die Tabellenzelle, welche den Inhalt enthält. Eigtl. sollte ja alles auf 100% Breite gestellt werden, es funktioniert allerdings nicht. Warum?
Danke für eure Hilfe,
Peter