Hello,
I would like to ask you for help related to one issue which I'm trying to resolve. Basically, I'm trying to gather some data for MS SQL and output everything to HTML. I'm using something like:
<style>
h1,h2,h3,h4,h5,h6{font-family: Verdana, Geneva, sans-serif;}
body{font-family: Verdana, Geneva, sans-serif;}
TABLE {border: 1px solid #ddd; border-collapse: collapse; margin: 10px 10px;}
TH {border: 1px solid #ddd; padding: 3px 5px; background-color: #348ED4; color: #fff;}
TD {border: 1px solid #ddd; padding: 3px 5px;}
TR {border-bottom: 1px solid #ddd;}
TR:nth-child(odd) { background-color: #eee; }
</style>
"@
My issue is that I would like to have the table header on each new page. Thanks for your help!
Br/
Daniel.