MediaWiki:Print.css: Unterschied zwischen den Versionen
Aus Medical-Software - WIKI
(Die Seite wurde neu angelegt: „→Das folgende CSS wird in der Druckausgabe geladen.: body { margin: 25mm 25mm 25mm 25mm; }“) |
|||
| Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird in der Druckausgabe geladen. */ | /* Das folgende CSS wird in der Druckausgabe geladen. */ | ||
| − | + | @page | |
| − | { | + | { |
| − | margin: 25mm 25mm 25mm 25mm; | + | size: auto; /* auto is the initial value */ |
| + | |||
| + | /* this affects the margin in the printer settings */ | ||
| + | margin: 25mm 25mm 25mm 25mm; | ||
| + | } | ||
| + | |||
| + | body | ||
| + | { | ||
| + | /* this affects the margin on the content before sending to printer */ | ||
| + | margin: 0px; | ||
} | } | ||
Version vom 31. August 2017, 14:35 Uhr
/* Das folgende CSS wird in der Druckausgabe geladen. */
@page
{
size: auto; /* auto is the initial value */
/* this affects the margin in the printer settings */
margin: 25mm 25mm 25mm 25mm;
}
body
{
/* this affects the margin on the content before sending to printer */
margin: 0px;
}