Skip to content

Instantly share code, notes, and snippets.

Created June 22, 2016 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8c3393b768e138a6a2b5166c988c94e9 to your computer and use it in GitHub Desktop.
Save anonymous/8c3393b768e138a6a2b5166c988c94e9 to your computer and use it in GitHub Desktop.
/* Inhaltsbreite setzen, Floats und Margins aufheben */
/* Achtung: Die Klassen und IDs variieren von Theme zu Theme. Hier also eigene Klassen setzen */
#content,#page {
width: 100%;
margin: 0;
float: none;
}
/** Seitenränder einstellen */
@page { margin: 2cm }
/* Oder aber: */
@page :left {
margin: 1cm;
}
@page :right {
margin: 1cm;
}
/* Auch die erste Seite eines Drucks kann manipuliert werden */
@page :first {
margin: 1cm 2cm;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment