У меня проблема с попыткой создать нижний колонтитул внизу страницы и затем распечатать его в PDF внизу страницы. Ниже приведен фрагмент кода, удаляющий содержимое страницы, кроме нижнего колонтитула.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sample</title>
<style type="text/css" media="all">
footer {
position: relative;
left: 0;
bottom: -100;
width: 100%;
}
</style>
</head>
<body>
<div>
Random Text<br/>
<div class="footer">
<img align="left" width="400" height="30" src="https://i.pinimg.com/originals/92/f0/a1/92f0a14d54bdf2caf551c6d78165081e.jpg"/>
</div>
</div>
</body>
</html>