footer in print page in asp.net

neentDeersHog

New Member
i have an html page need to print.\[code\]<div>content to print</div>\[/code\]also im having a footer content like\[code\]<div class="divFooter" style="clear: both; text-align: center, font-size: 12px;"> footer content</div>\[/code\]CSS for footer is\[code\]<style type="text/css"> @media screen { div.divFooter { display: none; } } @media print { div.divFooter { position: fixed; bottom: 0; } }</style>\[/code\]the footer is aligned at the bottom in ie and firefox.but not working good in chrome browser.Any idea?
 
Back
Top