Currently experiencing an issue with printing an HTML page styled using Bootstrap 4 (Bootstrap 3.3.7 works fine) on Chrome where the header and footer are partly covered up. Take a look at this screenshot to see what I mean - the date, title, and file/url are partially cut off. It appears to be a problem related to Bootstrap. I even tried creating a simple test page with just a link to the bootstrap cdn, and the issue still persists.
Below is the HTML code for testing purposes:
<html>
<head>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
</head>
<body>
</body>
</html>
If you include this code in an HTML document and then try to print it from Chrome by right-clicking, you will encounter the same issue.
Any suggestions on how to resolve this issue?