Created
January 27, 2017 03:21
-
-
Save yasinkuyu/201b6fdc99b4ce2ca993db8188e0c857 to your computer and use it in GitHub Desktop.
CSS print page hide footer/header each page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css" media="print"> | |
@page { | |
size: a4; | |
margin: 8.5mm 0; | |
padding: 0 | |
} | |
@page :first{ | |
size: a4; | |
margin: 0; | |
margin-right: 0; | |
margin-left: 0; | |
padding: 0 | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment