Print.css : Différence entre versions
De erg
Ligne 2 : | Ligne 2 : | ||
@page { | @page { | ||
size: A4; | size: A4; | ||
+ | background-color:green;} | ||
} | } | ||
@page :first { | @page :first { | ||
− | + | h1{color:green !important;} | |
} | } | ||
body{ | body{ | ||
− | + | background-color:red; | |
− | |||
} | } | ||
h1 { | h1 { | ||
− | color:red | + | color:red; |
} | } | ||
p { | p { |
Version du 24 janvier 2024 à 12:56
/* Le CSS placé ici affectera les impressions */ @page { size: A4; background-color:green;} } @page :first { h1{color:green !important;} } body{ background-color:red; } h1 { color:red; } p { font-size:12px; } #footer{ font-size:9px; } .printfooter, #footer-privacy, #footer-about, #footer-disclaimer { display:none !important; } /* To do : ajouter "imprimé depuis le site de l'erg" dans le footer / colophon */ /* https://www.smashingmagazine.com/2015/01/designing-for-print-with-css/ */