I've got a page, which contains some citations in blockquotes, with the associated source in a nested footer element.
For instance
<!-- some html content -->
<blockquote>
My very looooong citation about something ............
<footer>
<cite> The Jungle book, p. 43 </cite>
</footer>
</blockquote>
<! -- more html -->
The problem is that when I print the page, the content from the footer element gets added to the global footer of the printed page.
Any solution?