[css2xslfo-support] Regions
Brought to you by:
wdonne
From: Andreas J. <li...@an...> - 2005-05-24 14:43:31
|
Hello Werner, I am still fighting with some esoteric page formatting issues. I tried the=20 following to put some text into the bottom region. However none of my renders (Xinc,=20 XFC) output anything in the bottom region although the FO contains the text. Any = ideas? Andreas ---------- <html> <head> <style type=3D"text/css"> @page { margin-top: 35mm; } @page :left { margin-left: 15mm; margin-right: 35mm; } @page :right { margin-left: 35mm; margin-right: 15mm; } @media print { div.mybottom { region: bottom; page: left; height: 100pt; display: none; } } </style> </head> <body> <div class=3D"mybottom"> This should go to the bottom </div> <div class=3D"copyrightnotice"> labber labber..... </div> </body> </html> |